mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-23 06:03:40 +00:00
02297beade
Lots of packages are missing versions in their name. This adds them where appropriate. These were found with this command: $ nix-env -qa -f. | grep -v '\-[0-9A-Za-z.-_+]*$' | grep -v '^hook$' See issue #41007.
24 lines
658 B
Nix
24 lines
658 B
Nix
{ stdenv, fetchurl, fetchpatch }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "nlojet++-${version}";
|
|
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;
|
|
maintainers = with stdenv.lib.maintainers; [ veprbl ];
|
|
};
|
|
}
|