2021-10-24 23:22:59 +01:00
|
|
|
{ lib, stdenv, fetchurl, autoconf, gfortran, hepmc2, fastjet, lhapdf, rivet, sqlite }:
|
2016-12-30 17:32:53 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "sherpa";
|
2021-10-24 23:22:59 +01:00
|
|
|
version = "2.2.11";
|
2016-12-30 17:32:53 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2018-06-28 19:43:35 +01:00
|
|
|
url = "https://www.hepforge.org/archive/sherpa/SHERPA-MC-${version}.tar.gz";
|
2021-10-24 23:22:59 +01:00
|
|
|
sha256 = "sha256-DrA/h/f/MjGylKxAtVMq6OLvEdb6yB7pRt8UJXNmwi0=";
|
2016-12-30 17:32:53 +00:00
|
|
|
};
|
|
|
|
|
2021-08-18 01:14:20 +01:00
|
|
|
postPatch = lib.optionalString (stdenv.hostPlatform.libc == "glibc") ''
|
2020-08-16 14:12:48 +01:00
|
|
|
sed -ie '/sys\/sysctl.h/d' ATOOLS/Org/Run_Parameter.C
|
|
|
|
'';
|
|
|
|
|
2021-10-24 23:22:59 +01:00
|
|
|
nativeBuildInputs = [ autoconf gfortran ];
|
2021-09-03 12:33:32 +01:00
|
|
|
|
|
|
|
buildInputs = [ sqlite lhapdf rivet ];
|
2016-12-30 17:32:53 +00:00
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2017-01-07 06:36:51 +00:00
|
|
|
configureFlags = [
|
|
|
|
"--with-sqlite3=${sqlite.dev}"
|
2019-08-05 21:54:56 +01:00
|
|
|
"--enable-hepmc2=${hepmc2}"
|
2017-01-07 06:36:51 +00:00
|
|
|
"--enable-fastjet=${fastjet}"
|
|
|
|
"--enable-lhapdf=${lhapdf}"
|
|
|
|
"--enable-rivet=${rivet}"
|
2021-04-13 14:34:27 +01:00
|
|
|
"--enable-pythia"
|
2017-01-07 06:36:51 +00:00
|
|
|
];
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2016-12-30 17:32:53 +00:00
|
|
|
description = "Simulation of High-Energy Reactions of PArticles in lepton-lepton, lepton-photon, photon-photon, lepton-hadron and hadron-hadron collisions";
|
2020-04-28 21:42:26 +01:00
|
|
|
license = licenses.gpl2;
|
|
|
|
homepage = "https://gitlab.com/sherpa-team/sherpa";
|
|
|
|
platforms = platforms.unix;
|
|
|
|
maintainers = with maintainers; [ veprbl ];
|
2016-12-30 17:32:53 +00:00
|
|
|
};
|
|
|
|
}
|