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

  1. { pkgs, lib, ... }:
  2. with lib;
  3. {
  4. nixpkgs.overlays = [
  5. (self: super: {
  6. usermgr = self.callPackage ../packages/usermgr { };
  7. scalasca = self.callPackage ../packages/scalasca { };
  8. scorep = self.callPackage ../packages/scorep { };
  9. openmpi = self.callPackage ../packages/openmpi { };
  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. }