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