3
0
Fork 0
forked from mirrors/nixpkgs

Merge pull request #86251 from veprbl/pr/sherpa_2_2_9

sherpa: 2.2.8 -> 2.2.9
This commit is contained in:
Dmitry Kalinkin 2020-04-29 19:10:43 -04:00 committed by GitHub
commit babf5477f5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -2,11 +2,11 @@
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "sherpa"; pname = "sherpa";
version = "2.2.8"; version = "2.2.9";
src = fetchurl { src = fetchurl {
url = "https://www.hepforge.org/archive/sherpa/SHERPA-MC-${version}.tar.gz"; url = "https://www.hepforge.org/archive/sherpa/SHERPA-MC-${version}.tar.gz";
sha256 = "1al1imdrknvbcy8k113xysc14lln4msbv281bf0kx7p73wz59mv3"; sha256 = "1z7vws97k6zfzyqx0dkv2kq8d83dibi73i5jiqk5a22yplp6bnjh";
}; };
buildInputs = [ gfortran sqlite lhapdf rivet ]; buildInputs = [ gfortran sqlite lhapdf rivet ];
@ -21,13 +21,11 @@ stdenv.mkDerivation rec {
"--enable-rivet=${rivet}" "--enable-rivet=${rivet}"
]; ];
CXXFLAGS = "-std=c++11"; # needed for rivet on OSX meta = with stdenv.lib; {
meta = {
description = "Simulation of High-Energy Reactions of PArticles in lepton-lepton, lepton-photon, photon-photon, lepton-hadron and hadron-hadron collisions"; description = "Simulation of High-Energy Reactions of PArticles in lepton-lepton, lepton-photon, photon-photon, lepton-hadron and hadron-hadron collisions";
license = stdenv.lib.licenses.gpl2; license = licenses.gpl2;
homepage = "https://gitlab.com/sherpa-team/sherpa"; homepage = "https://gitlab.com/sherpa-team/sherpa";
platforms = stdenv.lib.platforms.unix; platforms = platforms.unix;
maintainers = with stdenv.lib.maintainers; [ veprbl ]; maintainers = with maintainers; [ veprbl ];
}; };
} }