qcdnum: init at 17-01-14

+25
+23
pkgs/development/libraries/physics/qcdnum/default.nix
··· 1 + { stdenv, fetchurl, gfortran }: 2 + 3 + stdenv.mkDerivation rec { 4 + name = "QCDNUM-${version}"; 5 + version = "17-01-14"; 6 + 7 + src = fetchurl { 8 + url = "http://www.nikhef.nl/user/h24/qcdnum-files/download/qcdnum${builtins.replaceStrings ["-"] [""] version}.tar.gz"; 9 + sha256 = "199s6kgmszxgjzd9214mpx3kyplq2q6987sii67s5xkg10ynyv31"; 10 + }; 11 + 12 + nativeBuildInputs = [ gfortran ]; 13 + 14 + enableParallelBuilding = true; 15 + 16 + meta = { 17 + description = "QCDNUM is a very fast QCD evolution program written in FORTRAN77"; 18 + license = stdenv.lib.licenses.gpl3; 19 + homepage = https://www.nikhef.nl/~h24/qcdnum/index.html; 20 + platforms = stdenv.lib.platforms.unix; 21 + maintainers = with stdenv.lib.maintainers; [ veprbl ]; 22 + }; 23 + }
+2
pkgs/top-level/all-packages.nix
··· 21438 21438 withRootSupport = true; 21439 21439 }); 21440 21440 21441 + qcdnum = callPackage ../development/libraries/physics/qcdnum { }; 21442 + 21441 21443 ### SCIENCE/ROBOTICS 21442 21444 21443 21445 apmplanner2 = libsForQt5.callPackage ../applications/science/robotics/apmplanner2 { };