2019-08-05 13:54:56 -07:00
|
|
|
{ stdenv, fetchurl, boost, fastjet, gsl, hepmc2, lhapdf, rivet, zlib }:
|
2016-07-17 09:00:17 -07:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 05:41:18 -07:00
|
|
|
pname = "thepeg";
|
2019-12-13 15:52:56 -08:00
|
|
|
version = "2.1.6";
|
2016-07-17 09:00:17 -07:00
|
|
|
|
|
|
|
src = fetchurl {
|
2018-06-28 11:43:35 -07:00
|
|
|
url = "https://www.hepforge.org/archive/thepeg/ThePEG-${version}.tar.bz2";
|
2019-12-13 15:52:56 -08:00
|
|
|
sha256 = "0krz6psr69kn48xkgr0mjadmzvq572mzn02inlasiz3bf61izrf1";
|
2016-07-17 09:00:17 -07:00
|
|
|
};
|
|
|
|
|
2019-08-05 13:54:56 -07:00
|
|
|
buildInputs = [ boost fastjet gsl hepmc2 lhapdf rivet zlib ];
|
2016-07-17 09:00:17 -07:00
|
|
|
|
|
|
|
configureFlags = [
|
2019-08-05 13:54:56 -07:00
|
|
|
"--with-hepmc=${hepmc2}"
|
2018-05-30 13:06:34 -07:00
|
|
|
"--with-rivet=${rivet}"
|
2016-07-17 09:00:17 -07:00
|
|
|
"--without-javagui"
|
|
|
|
];
|
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Toolkit for High Energy Physics Event Generation";
|
|
|
|
license = stdenv.lib.licenses.gpl2;
|
|
|
|
homepage = https://herwig.hepforge.org/;
|
|
|
|
platforms = stdenv.lib.platforms.unix;
|
2016-10-22 03:05:23 -07:00
|
|
|
maintainers = with stdenv.lib.maintainers; [ veprbl ];
|
2016-07-17 09:00:17 -07:00
|
|
|
};
|
|
|
|
}
|