NixOS configuration for HPC cluster
https://docs.hpc.informatik.hs-fulda.de/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
626 B
28 lines
626 B
{ pkgs, lib, ... }:
|
|
|
|
with lib;
|
|
|
|
{
|
|
nixpkgs.overlays = [
|
|
(self: super: {
|
|
usermgr = self.callPackage ../packages/usermgr { };
|
|
|
|
scalasca = self.callPackage ../packages/scalasca { };
|
|
scorep = self.callPackage ../packages/scorep { };
|
|
|
|
openmpi = self.callPackage ../packages/openmpi { };
|
|
|
|
ucx = super.ucx.overrideAttrs (final: prev: rec {
|
|
version = "1.16.0";
|
|
|
|
src = self.fetchFromGitHub {
|
|
owner = "openucx";
|
|
repo = "ucx";
|
|
rev = "v${version}";
|
|
hash = "sha256-dihWwGlQclfa2ke+1V5c6coqfFjjuMyI8QRzNdx33zQ=";
|
|
};
|
|
});
|
|
})
|
|
];
|
|
}
|
|
|