From 789c30f7e23f8f1427f2e8244945d0bfca281f45 Mon Sep 17 00:00:00 2001 From: FliegendeWurst Date: Thu, 2 Jan 2025 15:32:12 +0100 Subject: [PATCH] binaryen: fix strictDeps build --- pkgs/development/compilers/binaryen/default.nix | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/pkgs/development/compilers/binaryen/default.nix b/pkgs/development/compilers/binaryen/default.nix index 15734ad67078..a06bd43ed3c6 100644 --- a/pkgs/development/compilers/binaryen/default.nix +++ b/pkgs/development/compilers/binaryen/default.nix @@ -34,6 +34,8 @@ stdenv.mkDerivation rec { python3 ]; + strictDeps = true; + preConfigure = '' if [ $doCheck -eq 1 ]; then sed -i '/googletest/d' third_party/CMakeLists.txt @@ -45,11 +47,13 @@ stdenv.mkDerivation rec { ''; nativeCheckInputs = [ - gtest lit nodejs filecheck ]; + checkInputs = [ + gtest + ]; checkPhase = '' LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$PWD/lib python3 ../check.py $tests '';