Files
nixpkgs/pkgs/by-name/qc/qcdnum/package.nix
Dark Steveneq 646b892680
Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
push sheeet
2025-10-09 14:15:47 +02:00

38 lines
831 B
Nix

{
lib,
stdenv,
fetchurl,
gfortran,
zlib,
}:
stdenv.mkDerivation rec {
pname = "QCDNUM";
version = "18-00-00";
src = fetchurl {
url = "http://www.nikhef.nl/user/h24/qcdnum-files/download/qcdnum${
builtins.replaceStrings [ "-" ] [ "" ] version
}.tar.gz";
hash = "sha256-4Qj5JreEA1LkCAunGRTTQD7YEYNk+HcQ4iH97DIO4gA=";
};
nativeBuildInputs = [ gfortran ];
buildInputs = [ zlib ];
FFLAGS = [
"-std=legacy" # fix build with gfortran 10
];
enableParallelBuilding = true;
meta = {
description = "Very fast QCD evolution program written in FORTRAN77";
mainProgram = "qcdnum-config";
license = lib.licenses.gpl3;
homepage = "https://www.nikhef.nl/~h24/qcdnum/index.html";
platforms = lib.platforms.unix;
maintainers = with lib.maintainers; [ veprbl ];
};
}