3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/libraries/physics/qcdnum/default.nix
Theodore Ni de529b107b
qcdnum: 17-01-15 -> 18-00-00
Changelog at https://www.nikhef.nl/~h24/qcdnum/QcdnumDownload.html says:

  Same as qcdnum-17-01/15 with a few minor fixes.

One of these fixes is to replace real*16 with double precision for a few
variables to be standards compliant. This resolves following error:

  Error: Old-style type declaration REAL*16 not supported at (1)
2022-09-23 01:16:50 -07:00

29 lines
780 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 = "A very fast QCD evolution program written in FORTRAN77";
license = lib.licenses.gpl3;
homepage = "https://www.nikhef.nl/~h24/qcdnum/index.html";
platforms = lib.platforms.unix;
maintainers = with lib.maintainers; [ veprbl ];
};
}