3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/libraries/physics/nlojet/default.nix

24 lines
643 B
Nix
Raw Normal View History

2016-09-10 13:24:35 +01:00
{ stdenv, fetchurl, fetchpatch }:
stdenv.mkDerivation rec {
name = "nlojet++";
version = "4.1.3";
src = fetchurl {
url = "http://desy.de/~znagy/hep-programs/nlojet++/nlojet++-${version}.tar.gz";
sha256 = "18qfn5kjzvnyh29x40zm2maqzfmrnay9r58n8pfpq5lcphdhhv8p";
};
patches = [
./nlojet_clang_fix.patch
];
meta = {
homepage = "http://www.desy.de/~znagy/Site/NLOJet++.html";
license = stdenv.lib.licenses.gpl2;
description = "Implementation of calculation of the hadron jet cross sections";
platforms = stdenv.lib.platforms.unix;
2016-10-21 18:29:57 +01:00
maintainers = with stdenv.maintainers; [ veprbl ];
2016-09-10 13:24:35 +01:00
};
}