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
445 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 = "cubew";
  12. version = "4.8.2";
  13. src = fetchzip {
  14. url = "https://apps.fz-juelich.de/scalasca/releases/cube/${versions.majorMinor version}/dist/cubew-${version}.tar.gz";
  15. hash = "sha256-Ky6p6jAdHABQJs64VuIBDBWcujEBDVlyVTa8pZyQ2rM=";
  16. };
  17. nativeBuildInputs = [
  18. pkg-config
  19. which
  20. ];
  21. buildInputs = [
  22. zlib
  23. ];
  24. }