fastnlo_toolkit: enable tests

This commit is contained in:
Dmitry Kalinkin 2021-07-30 20:36:32 -04:00
parent 3e4f2f4f51
commit 32f2712625
No known key found for this signature in database
GPG key ID: 5157B3EC8B2CA333

View file

@ -6,6 +6,7 @@
, gfortran
, lhapdf
, ncurses
, perl
, python ? null
, swig
, yoda
@ -57,6 +58,16 @@ stdenv.mkDerivation rec {
enableParallelBuilding = true;
doCheck = true;
checkInputs = [
perl
lhapdf.pdf_sets.CT10nlo
];
preCheck = ''
patchShebangs --build check
'';
enableParallelChecking = false;
meta = with lib; {
homepage = "http://fastnlo.hepforge.org";
description = "Fast pQCD calculations for hadron-induced processes";
@ -74,5 +85,6 @@ stdenv.mkDerivation rec {
license = licenses.gpl3Plus;
maintainers = with maintainers; [ veprbl ];
platforms = platforms.unix;
broken = stdenv.isAarch64; # failing test "fnlo-tk-stattest.pl"
};
}