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.

27 lines
707 B

  1. {
  2. nixpkgs.overlays = [
  3. (self: super: {
  4. usermgr = self.callPackage ../packages/usermgr { };
  5. scalasca = self.callPackage ../packages/scalasca { };
  6. scorep = self.callPackage ../packages/scorep { };
  7. openmpi = self.callPackage ../packages/openmpi { };
  8. pdtoolkit = self.callPackage ../packages/pdtoolkit { };
  9. tau = self.callPackage ../packages/tau { };
  10. ucx = super.ucx.overrideAttrs (final: prev: rec {
  11. version = "1.16.0";
  12. src = self.fetchFromGitHub {
  13. owner = "openucx";
  14. repo = "ucx";
  15. rev = "v${version}";
  16. hash = "sha256-dihWwGlQclfa2ke+1V5c6coqfFjjuMyI8QRzNdx33zQ=";
  17. };
  18. });
  19. })
  20. ];
  21. }