1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

pythia: 8.226 -> 8.235, enable lhapdf6 plugin

This commit is contained in:
Dmitry Kalinkin 2018-04-26 18:08:53 -04:00
parent 6c5d860c8b
commit 1cfc5f1da2
No known key found for this signature in database
GPG key ID: 5157B3EC8B2CA333

View file

@ -2,11 +2,11 @@
stdenv.mkDerivation rec {
name = "pythia-${version}";
version = "8.226";
version = "8.235";
src = fetchurl {
url = "http://home.thep.lu.se/~torbjorn/pythia8/pythia${builtins.replaceStrings ["."] [""] version}.tgz";
sha256 = "1jfjkq78d1llrrm2k5pgsl92a5z8af9rx3n83rzv28lxrqdjix4g";
sha256 = "17cfgs7v469pdnnzvlmdagcdhi0h419znqmaws90l9d8cmhhsbz8";
};
buildInputs = [ boost fastjet hepmc zlib rsync lhapdf ];
@ -18,6 +18,7 @@ stdenv.mkDerivation rec {
configureFlags = [
"--enable-shared"
"--with-hepmc2=${hepmc}"
"--with-lhapdf6=${lhapdf}"
];
enableParallelBuilding = true;