504525a148
GitOrigin-RevId: bd645e8668ec6612439a9ee7e71f7eac4099d4f6
31 lines
840 B
Nix
31 lines
840 B
Nix
{ lib, stdenv, fetchurl, autoreconfHook, boost, fastjet, gsl, hepmc2, lhapdf, rivet, zlib }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "thepeg";
|
|
version = "2.3.0";
|
|
|
|
src = fetchurl {
|
|
url = "https://www.hepforge.org/archive/thepeg/ThePEG-${version}.tar.bz2";
|
|
hash = "sha256-rDWXmuicKWCMqSwVakn/aKrOeloSoMkvCgGoM9LTRXI=";
|
|
};
|
|
|
|
nativeBuildInputs = [ autoreconfHook ];
|
|
|
|
buildInputs = [ boost fastjet gsl hepmc2 lhapdf rivet zlib ];
|
|
|
|
configureFlags = [
|
|
"--with-hepmc=${hepmc2}"
|
|
"--with-rivet=${rivet}"
|
|
"--without-javagui"
|
|
];
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
meta = with lib; {
|
|
description = "Toolkit for High Energy Physics Event Generation";
|
|
homepage = "https://herwig.hepforge.org/";
|
|
license = licenses.gpl3Only;
|
|
maintainers = with maintainers; [ veprbl ];
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|