Skip to content

Commit

Permalink
fastnlo-toolkit: fix and enable strictDeps
Browse files Browse the repository at this point in the history
Also remove the currently unused gfortran inputs.
  • Loading branch information
FliegendeWurst committed Dec 19, 2024
1 parent 0852807 commit 363053f
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions pkgs/by-name/fa/fastnlo-toolkit/package.nix
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
stdenv,
fetchurl,
boost,
gfortran,
lhapdf,
ncurses,
perl,
Expand Down Expand Up @@ -35,11 +34,14 @@ stdenv.mkDerivation rec {
./yoda2_support.patch
];

nativeBuildInputs = [
lhapdf # lhapdf-config
yoda # yoda-config
];

buildInputs =
[
boost
gfortran
gfortran.cc.lib
lhapdf
yoda
]
Expand Down Expand Up @@ -68,6 +70,8 @@ stdenv.mkDerivation rec {
"--with-yoda=${yoda}"
] ++ lib.optional withPython "--enable-pyext";

strictDeps = true;

enableParallelBuilding = true;

doCheck = true;
Expand Down

0 comments on commit 363053f

Please sign in to comment.