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 {
|
|
|
|
name = "pythia-${version}";
|
2019-08-05 15:30:54 +00:00
|
|
|
version = "8.243";
|
2016-07-25 06:00:51 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "http://home.thep.lu.se/~torbjorn/pythia8/pythia${builtins.replaceStrings ["."] [""] version}.tgz";
|
2019-08-05 15:30:54 +00:00
|
|
|
sha256 = "0y8w5gdaczg8vdw63rkgjr1dcvqs2clqkdia34p30xcwgm1jgv7q";
|
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}"
|
2018-04-26 22:08:53 +00:00
|
|
|
"--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;
|
|
|
|
platforms = stdenv.lib.platforms.unix;
|
2016-10-22 10:05:23 +00:00
|
|
|
maintainers = with stdenv.lib.maintainers; [ veprbl ];
|
2016-07-25 06:00:51 +00:00
|
|
|
};
|
|
|
|
}
|