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.

26 lines
567 B

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