From eabe3789b67700ebdf7a1fb04a4f168ed2c144f7 Mon Sep 17 00:00:00 2001 From: FliegendeWurst <2012gdwu+github@posteo.de> Date: Thu, 19 Dec 2024 07:21:20 +0100 Subject: [PATCH] yoda: fix and enable strictDeps --- pkgs/development/libraries/physics/yoda/default.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pkgs/development/libraries/physics/yoda/default.nix b/pkgs/development/libraries/physics/yoda/default.nix index 746286254dae..581c9b4362dd 100644 --- a/pkgs/development/libraries/physics/yoda/default.nix +++ b/pkgs/development/libraries/physics/yoda/default.nix @@ -3,6 +3,7 @@ stdenv, fetchFromGitLab, autoreconfHook, + bash, python, root, makeWrapper, @@ -23,6 +24,7 @@ stdenv.mkDerivation rec { nativeBuildInputs = with python.pkgs; [ autoreconfHook + bash cython makeWrapper ]; @@ -43,6 +45,8 @@ stdenv.mkDerivation rec { zlib ]; + strictDeps = true; + enableParallelBuilding = true; postPatch = '' @@ -54,6 +58,7 @@ stdenv.mkDerivation rec { ''; postInstall = '' + patchShebangs --build $out/bin/yoda-config for prog in "$out"/bin/*; do wrapProgram "$prog" --set PYTHONPATH $PYTHONPATH:$(toPythonPath "$out") done