nixpkgs/pkgs/applications/science/physics/sherpa/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

41 lines
1.3 KiB
Nix
Raw Normal View History

2021-10-24 22:22:59 +00:00
{ lib, stdenv, fetchurl, autoconf, gfortran, hepmc2, fastjet, lhapdf, rivet, sqlite }:
2016-12-30 17:32:53 +00:00
stdenv.mkDerivation rec {
pname = "sherpa";
2023-01-09 22:03:45 +00:00
version = "2.2.13";
2016-12-30 17:32:53 +00:00
src = fetchurl {
url = "https://www.hepforge.org/archive/sherpa/SHERPA-MC-${version}.tar.gz";
2023-01-09 22:03:45 +00:00
sha256 = "sha256-FIozm2AmxaELIDiLBNx8RtUCy1fIjTGtnpFiAcKcZXE=";
2016-12-30 17:32:53 +00:00
};
postPatch = lib.optionalString (stdenv.hostPlatform.libc == "glibc") ''
2020-08-16 13:12:48 +00:00
sed -ie '/sys\/sysctl.h/d' ATOOLS/Org/Run_Parameter.C
'';
2021-10-24 22:22:59 +00:00
nativeBuildInputs = [ autoconf gfortran ];
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 20:54:56 +00:00
"--enable-hepmc2=${hepmc2}"
2017-01-07 06:36:51 +00:00
"--enable-fastjet=${fastjet}"
"--enable-lhapdf=${lhapdf}"
"--enable-rivet=${rivet}"
"--enable-pythia"
2017-01-07 06:36:51 +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 20:42:26 +00:00
license = licenses.gpl2;
homepage = "https://gitlab.com/sherpa-team/sherpa";
platforms = platforms.unix;
maintainers = with maintainers; [ veprbl ];
# never built on aarch64-darwin since first introduction in nixpkgs
broken = stdenv.isDarwin && stdenv.isAarch64;
2016-12-30 17:32:53 +00:00
};
}