2021-01-21 17:00:13 +00:00
|
|
|
{ lib, stdenv, fetchurl }:
|
2016-09-10 13:24:35 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "nlojet++";
|
2016-09-10 13:24:35 +01:00
|
|
|
version = "4.1.3";
|
|
|
|
|
|
|
|
src = fetchurl {
|
2018-06-28 19:43:35 +01:00
|
|
|
url = "https://desy.de/~znagy/hep-programs/nlojet++/nlojet++-${version}.tar.gz";
|
2016-09-10 13:24:35 +01:00
|
|
|
sha256 = "18qfn5kjzvnyh29x40zm2maqzfmrnay9r58n8pfpq5lcphdhhv8p";
|
|
|
|
};
|
|
|
|
|
|
|
|
patches = [
|
|
|
|
./nlojet_clang_fix.patch
|
|
|
|
];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
homepage = "http://www.desy.de/~znagy/Site/NLOJet++.html";
|
2021-01-21 17:00:13 +00:00
|
|
|
license = lib.licenses.gpl2;
|
2016-09-10 13:24:35 +01:00
|
|
|
description = "Implementation of calculation of the hadron jet cross sections";
|
2021-01-21 17:00:13 +00:00
|
|
|
platforms = lib.platforms.unix;
|
|
|
|
maintainers = with lib.maintainers; [ veprbl ];
|
2016-09-10 13:24:35 +01:00
|
|
|
};
|
|
|
|
}
|