571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
30 lines
813 B
Nix
30 lines
813 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 ];
|
|
};
|
|
}
|