about summary refs log tree commit diff
diff options
context:
space:
mode:
authorLas Safin <me@las.rs>2021-12-23 21:14:28 +0000
committerLas Safin <me@las.rs>2021-12-23 21:14:28 +0000
commit177e4ff31fc51726eebb09b8a2b0b15c791c26a4 (patch)
tree79f0250f1be86c13853ac8f9d3fb4fb1ba5921a8
parentd3f1b7d32d619ef3cf6b469c324086fe5d0e1b11 (diff)
chez-racket: Fix signing on Darwin (Thanks @Steven0351!)
-rw-r--r--pkgs/development/compilers/chez-racket/shared.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/compilers/chez-racket/shared.nix b/pkgs/development/compilers/chez-racket/shared.nix
index 06c1419fea6ca..f5a9bbc1e5b4b 100644
--- a/pkgs/development/compilers/chez-racket/shared.nix
+++ b/pkgs/development/compilers/chez-racket/shared.nix
@@ -23,7 +23,7 @@ stdenv.mkDerivation (args // {
     export LZ4="$(find ${lz4.out}/lib -type f | sort | head -n1)"
   '';
 
-  nativeBuildInputs = lib.optional stdenv.isDarwin darwin.cctools;
+  nativeBuildInputs = lib.optionals stdenv.isDarwin (with darwin; [ cctools autoSignDarwinBinariesHook ]);
   buildInputs = [ ncurses libX11 zlib lz4 ]
     ++ lib.optional stdenv.isDarwin libiconv;