2021-01-15 22:18:51 +00:00
|
|
|
{ lib, stdenv, fetchurl, gfortran, hepmc2, fastjet, lhapdf, rivet, sqlite }:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "sherpa";
|
2020-05-29 06:06:01 +00:00
|
|
|
version = "2.2.10";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "https://www.hepforge.org/archive/sherpa/SHERPA-MC-${version}.tar.gz";
|
2020-05-29 06:06:01 +00:00
|
|
|
sha256 = "1iwa17s8ipj6a2b8zss5csb1k5y9s5js38syvq932rxcinbyjsl4";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
2021-03-09 03:18:52 +00:00
|
|
|
postPatch = lib.optional (stdenv.hostPlatform.libc == "glibc") ''
|
2020-10-16 20:44:37 +00:00
|
|
|
sed -ie '/sys\/sysctl.h/d' ATOOLS/Org/Run_Parameter.C
|
|
|
|
'';
|
|
|
|
|
2020-04-24 23:36:52 +00:00
|
|
|
buildInputs = [ gfortran sqlite lhapdf rivet ];
|
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
|
|
|
configureFlags = [
|
|
|
|
"--with-sqlite3=${sqlite.dev}"
|
|
|
|
"--enable-hepmc2=${hepmc2}"
|
|
|
|
"--enable-fastjet=${fastjet}"
|
|
|
|
"--enable-lhapdf=${lhapdf}"
|
|
|
|
"--enable-rivet=${rivet}"
|
|
|
|
];
|
|
|
|
|
2021-01-15 22:18:51 +00:00
|
|
|
meta = with lib; {
|
2020-04-24 23:36:52 +00:00
|
|
|
description = "Simulation of High-Energy Reactions of PArticles in lepton-lepton, lepton-photon, photon-photon, lepton-hadron and hadron-hadron collisions";
|
2020-05-03 17:38:23 +00:00
|
|
|
license = licenses.gpl2;
|
|
|
|
homepage = "https://gitlab.com/sherpa-team/sherpa";
|
|
|
|
platforms = platforms.unix;
|
|
|
|
maintainers = with maintainers; [ veprbl ];
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
}
|