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.

15 lines
306 B

  1. { stdenv
  2. , fetchzip
  3. , ...
  4. }:
  5. stdenv.mkDerivation rec {
  6. name = "otf2";
  7. version = "3.0.3";
  8. src = fetchzip {
  9. url = "https://perftools.pages.jsc.fz-juelich.de/cicd/${name}/tags/${name}-${version}/${name}-${version}.tar.gz";
  10. hash = "sha256-SELtnvnN6VNqJRZFU5SdOd19rAZHL8P9KZv8qu2uqu0=";
  11. };
  12. }