sherpa: 2.2.8 -> 2.2.9

This commit is contained in:
Dmitry Kalinkin 2020-04-28 16:42:26 -04:00
parent 27c7e7d38a
commit ae0685129b
No known key found for this signature in database
GPG Key ID: 5157B3EC8B2CA333

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 ];
}; };
} }