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.

21 lines
362 B

  1. { stdenv
  2. , fetchzip
  3. , ...
  4. }:
  5. stdenv.mkDerivation rec {
  6. name = "opari2";
  7. version = "2.0.8";
  8. src = fetchzip {
  9. url = "https://perftools.pages.jsc.fz-juelich.de/cicd/${name}/tags/${name}-${version}/${name}-${version}.tar.gz";
  10. hash = "sha256-vrgoUIV+dyVvYJigdu3XXVDzDQrZZo2mHrmm2orVMXI=";
  11. };
  12. nativeBuildInputs = [
  13. ];
  14. buildInputs = [
  15. ];
  16. }