nixpkgs/pkgs/development/libraries/physics/pythia/default.nix

34 lines
914 B
Nix
Raw Normal View History

2019-08-05 20:54:56 +00:00
{ stdenv, fetchurl, boost, fastjet, hepmc2, lhapdf, rsync, zlib }:
2016-07-25 06:00:51 +00:00
stdenv.mkDerivation rec {
pname = "pythia";
2019-12-20 15:28:56 +00:00
version = "8.244";
2016-07-25 06:00:51 +00:00
src = fetchurl {
url = "http://home.thep.lu.se/~torbjorn/pythia8/pythia${builtins.replaceStrings ["."] [""] version}.tgz";
2019-12-20 15:28:56 +00:00
sha256 = "1jlj9hgmk2gcm5p0zqsiz0dpv9vvj8ip261si7frrwfsk7wq0j73";
2016-07-25 06:00:51 +00:00
};
2019-08-05 20:54:56 +00:00
buildInputs = [ boost fastjet hepmc2 zlib rsync lhapdf ];
2016-07-25 06:00:51 +00:00
preConfigure = ''
patchShebangs ./configure
'';
configureFlags = [
"--enable-shared"
2019-08-05 20:54:56 +00:00
"--with-hepmc2=${hepmc2}"
"--with-lhapdf6=${lhapdf}"
2016-07-25 06:00:51 +00:00
];
enableParallelBuilding = true;
meta = {
description = "A program for the generation of high-energy physics events";
license = stdenv.lib.licenses.gpl2;
homepage = "http://home.thep.lu.se/~torbjorn/Pythia.html";
2016-07-25 06:00:51 +00:00
platforms = stdenv.lib.platforms.unix;
maintainers = with stdenv.lib.maintainers; [ veprbl ];
2016-07-25 06:00:51 +00:00
};
}