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.

30 lines
449 B

  1. { stdenv
  2. , fetchzip
  3. , zlib
  4. , which
  5. , pkg-config
  6. , lib
  7. , ...
  8. }:
  9. with lib;
  10. stdenv.mkDerivation rec {
  11. name = "cubelib";
  12. version = "4.8.2";
  13. src = fetchzip {
  14. url = "https://apps.fz-juelich.de/scalasca/releases/cube/${versions.majorMinor version}/dist/cubelib-${version}.tar.gz";
  15. hash = "sha256-cf8SiurOSu+9xnmc3/6fJqziLFfgxfdNq1tMusN5ug4=";
  16. };
  17. nativeBuildInputs = [
  18. pkg-config
  19. which
  20. ];
  21. buildInputs = [
  22. zlib
  23. ];
  24. }