summary refs log tree commit diff
path: root/pkgs/test/make-binary-wrapper
diff options
context:
space:
mode:
authorTobias Bergkvist <tobias@bergkv.ist>2021-12-16 21:29:21 +0100
committerTobias Bergkvist <tobias@bergkv.ist>2021-12-16 21:29:21 +0100
commitebf46e57648aa93b8e0a38e73473133291a38120 (patch)
treec0b11750b07e3d51fd339989ee9cdebbb3e467ec /pkgs/test/make-binary-wrapper
parentd5435990b003a1c5279beaa9bdda5b5dd9724124 (diff)
downloadnixpkgs-ebf46e57648aa93b8e0a38e73473133291a38120.tar
nixpkgs-ebf46e57648aa93b8e0a38e73473133291a38120.tar.gz
nixpkgs-ebf46e57648aa93b8e0a38e73473133291a38120.tar.bz2
nixpkgs-ebf46e57648aa93b8e0a38e73473133291a38120.tar.lz
nixpkgs-ebf46e57648aa93b8e0a38e73473133291a38120.tar.xz
nixpkgs-ebf46e57648aa93b8e0a38e73473133291a38120.tar.zst
nixpkgs-ebf46e57648aa93b8e0a38e73473133291a38120.zip
makeBinaryWrapper: Fix issues on aarch64-darwin/macOS 12 (Monterey)
Sanitizers don't seem to be present on aarch64-darwin/macOS 12 (Monterey), so they are removed from the aarch64-darwin tests.

Switching from nativeBuildInputs to buildInputs and adding cc to the deps list caused some strange error messages to go away.
Diffstat (limited to 'pkgs/test/make-binary-wrapper')
-rw-r--r--pkgs/test/make-binary-wrapper/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/test/make-binary-wrapper/default.nix b/pkgs/test/make-binary-wrapper/default.nix
index 7b4d0b26b5c..b5bbf994ffa 100644
--- a/pkgs/test/make-binary-wrapper/default.nix
+++ b/pkgs/test/make-binary-wrapper/default.nix
@@ -1,7 +1,7 @@
 { lib, coreutils, python3, gcc, writeText, writeScript, runCommand, makeBinaryWrapper }:
 
 let
-  env = { nativeBuildInputs = [ makeBinaryWrapper ]; };
+  env = { buildInputs = [ makeBinaryWrapper ]; };
   envCheck = runCommand "envcheck" env ''
     ${gcc}/bin/cc -Wall -Werror -Wpedantic -o $out ${./envcheck.c}
   '';