mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-23 05:14:45 +00:00
f9fdf2d402
with structuredAttrs lists will be bash arrays which cannot be exported which will be a issue with some patches and some wrappers like cc-wrapper this makes it clearer that NIX_CFLAGS_COMPILE must be a string as lists in env cause a eval failure
27 lines
818 B
Nix
27 lines
818 B
Nix
{ lib, stdenv, fetchurl }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "nlojet++";
|
|
version = "4.1.3";
|
|
|
|
src = fetchurl {
|
|
url = "https://desy.de/~znagy/hep-programs/nlojet++/nlojet++-${version}.tar.gz";
|
|
sha256 = "18qfn5kjzvnyh29x40zm2maqzfmrnay9r58n8pfpq5lcphdhhv8p";
|
|
};
|
|
|
|
patches = [
|
|
./nlojet_clang_fix.patch
|
|
];
|
|
|
|
# error: no member named 'finite' in the global namespace; did you mean simply 'finite'?
|
|
env.NIX_CFLAGS_COMPILE = lib.optionalString (stdenv.isDarwin && stdenv.isAarch64) "-Dfinite=isfinite";
|
|
|
|
meta = {
|
|
homepage = "http://www.desy.de/~znagy/Site/NLOJet++.html";
|
|
license = lib.licenses.gpl2;
|
|
description = "Implementation of calculation of the hadron jet cross sections";
|
|
platforms = lib.platforms.unix;
|
|
maintainers = with lib.maintainers; [ veprbl ];
|
|
};
|
|
}
|