summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorDmitry Kalinkin <dmitry.kalinkin@gmail.com>2018-09-24 14:25:38 -0400
committerDmitry Kalinkin <dmitry.kalinkin@gmail.com>2018-09-24 14:34:48 -0400
commit5c2a7f104eb06415831ffe11e00d636959dcdb73 (patch)
tree9c14ea4c7c368ee7eeded931819d47c36ef32b54 /pkgs
parentf793b9fd06a9fb8581b3110fc9c817322258f49a (diff)
downloadnixpkgs-5c2a7f104eb06415831ffe11e00d636959dcdb73.tar
nixpkgs-5c2a7f104eb06415831ffe11e00d636959dcdb73.tar.gz
nixpkgs-5c2a7f104eb06415831ffe11e00d636959dcdb73.tar.bz2
nixpkgs-5c2a7f104eb06415831ffe11e00d636959dcdb73.tar.lz
nixpkgs-5c2a7f104eb06415831ffe11e00d636959dcdb73.tar.xz
nixpkgs-5c2a7f104eb06415831ffe11e00d636959dcdb73.tar.zst
nixpkgs-5c2a7f104eb06415831ffe11e00d636959dcdb73.zip
qcdnum: init at 17-01-14
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/libraries/physics/qcdnum/default.nix23
-rw-r--r--pkgs/top-level/all-packages.nix2
2 files changed, 25 insertions, 0 deletions
diff --git a/pkgs/development/libraries/physics/qcdnum/default.nix b/pkgs/development/libraries/physics/qcdnum/default.nix
new file mode 100644
index 00000000000..1a333456264
--- /dev/null
+++ b/pkgs/development/libraries/physics/qcdnum/default.nix
@@ -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 ];
+  };
+}
diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix
index fa350083a8e..fa39ba9ef8b 100644
--- a/pkgs/top-level/all-packages.nix
+++ b/pkgs/top-level/all-packages.nix
@@ -21438,6 +21438,8 @@ with pkgs;
     withRootSupport = true;
   });
 
+  qcdnum = callPackage ../development/libraries/physics/qcdnum { };
+
   ### SCIENCE/ROBOTICS
 
   apmplanner2 = libsForQt5.callPackage ../applications/science/robotics/apmplanner2 { };