forked from mirrors/nixpkgs
24 lines
739 B
Nix
24 lines
739 B
Nix
|
{ stdenv, fetchurl, gfortran, sqlite }:
|
||
|
|
||
|
stdenv.mkDerivation rec {
|
||
|
name = "sherpa-${version}";
|
||
|
version = "2.2.1";
|
||
|
|
||
|
src = fetchurl {
|
||
|
url = "http://www.hepforge.org/archive/sherpa/SHERPA-MC-${version}.tar.gz";
|
||
|
sha256 = "13vkz6w8kqyv8sgy3mxnlps5ykml5rnlj50vjj0pp9rgbl5y8ali";
|
||
|
};
|
||
|
|
||
|
buildInputs = [ gfortran sqlite ];
|
||
|
|
||
|
enableParallelBuilding = true;
|
||
|
|
||
|
meta = {
|
||
|
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;
|
||
|
homepage = https://sherpa.hepforge.org;
|
||
|
platforms = stdenv.lib.platforms.unix;
|
||
|
maintainers = with stdenv.lib.maintainers; [ veprbl ];
|
||
|
};
|
||
|
}
|