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
423 B

  1. { stdenv
  2. , fetchzip
  3. , zlib
  4. , which
  5. , pkg-config
  6. , ...
  7. }:
  8. stdenv.mkDerivation rec {
  9. name = "cubew";
  10. version = "4.8.2";
  11. src = fetchzip {
  12. url = "https://perftools.pages.jsc.fz-juelich.de/cicd/${name}/tags/${name}-${version}/${name}-${version}.tar.gz";
  13. hash = "sha256-Ky6p6jAdHABQJs64VuIBDBWcujEBDVlyVTa8pZyQ2rM=";
  14. };
  15. nativeBuildInputs = [
  16. pkg-config
  17. which
  18. ];
  19. buildInputs = [
  20. zlib
  21. ];
  22. }