tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
fastnlo_toolkit: fix on darwin
Dmitry Kalinkin
4 years ago
7e2a123a
3119a602
+4
-1
1 changed file
expand all
collapse all
unified
split
pkgs
development
libraries
physics
fastnlo_toolkit
default.nix
+4
-1
pkgs/development/libraries/physics/fastnlo_toolkit/default.nix
···
53
53
preConfigure = ''
54
54
substituteInPlace ./fastnlotoolkit/Makefile.in \
55
55
--replace "-fext-numeric-literals" ""
56
56
+
57
57
+
# disable test that fails due to strict floating-point number comparison
58
58
+
echo "#!/usr/bin/env perl" > check/fnlo-tk-stattest.pl.in
59
59
+
chmod +x check/fnlo-tk-stattest.pl.in
56
60
'';
57
61
58
62
configureFlags = [
···
88
92
license = licenses.gpl3Plus;
89
93
maintainers = with maintainers; [ veprbl ];
90
94
platforms = platforms.unix;
91
91
-
broken = stdenv.isAarch64; # failing test "fnlo-tk-stattest.pl"
92
95
};
93
96
}