qcdnum: init at 17-01-14

This commit is contained in:
Dmitry Kalinkin 2018-09-24 14:25:38 -04:00
parent f793b9fd06
commit 5c2a7f104e
2 changed files with 25 additions and 0 deletions

View file

@ -0,0 +1,23 @@
{ stdenv, fetchurl, gfortran }:
stdenv.mkDerivation rec {
name = "QCDNUM-${version}";
version = "17-01-14";
src = fetchurl {
url = "http://www.nikhef.nl/user/h24/qcdnum-files/download/qcdnum${builtins.replaceStrings ["-"] [""] version}.tar.gz";
sha256 = "199s6kgmszxgjzd9214mpx3kyplq2q6987sii67s5xkg10ynyv31";
};
nativeBuildInputs = [ gfortran ];
enableParallelBuilding = true;
meta = {
description = "QCDNUM is a very fast QCD evolution program written in FORTRAN77";
license = stdenv.lib.licenses.gpl3;
homepage = https://www.nikhef.nl/~h24/qcdnum/index.html;
platforms = stdenv.lib.platforms.unix;
maintainers = with stdenv.lib.maintainers; [ veprbl ];
};
}

View file

@ -21438,6 +21438,8 @@ with pkgs;
withRootSupport = true;
});
qcdnum = callPackage ../development/libraries/physics/qcdnum { };
### SCIENCE/ROBOTICS
apmplanner2 = libsForQt5.callPackage ../applications/science/robotics/apmplanner2 { };