32 lines
952 B
Nix
32 lines
952 B
Nix
{ stdenv, fetchurl, gfortran, hepmc2, fastjet, lhapdf, rivet, sqlite }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "sherpa";
|
|
version = "2.2.9";
|
|
|
|
src = fetchurl {
|
|
url = "https://www.hepforge.org/archive/sherpa/SHERPA-MC-${version}.tar.gz";
|
|
sha256 = "1z7vws97k6zfzyqx0dkv2kq8d83dibi73i5jiqk5a22yplp6bnjh";
|
|
};
|
|
|
|
buildInputs = [ gfortran sqlite lhapdf rivet ];
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
configureFlags = [
|
|
"--with-sqlite3=${sqlite.dev}"
|
|
"--enable-hepmc2=${hepmc2}"
|
|
"--enable-fastjet=${fastjet}"
|
|
"--enable-lhapdf=${lhapdf}"
|
|
"--enable-rivet=${rivet}"
|
|
];
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Simulation of High-Energy Reactions of PArticles in lepton-lepton, lepton-photon, photon-photon, lepton-hadron and hadron-hadron collisions";
|
|
license = licenses.gpl2;
|
|
homepage = "https://gitlab.com/sherpa-team/sherpa";
|
|
platforms = platforms.unix;
|
|
maintainers = with maintainers; [ veprbl ];
|
|
};
|
|
}
|