chez-racket: Fix build failure (#344725)

This commit is contained in:
Mathew Polzin 2024-09-28 09:39:38 -05:00 committed by GitHub
commit f60e814dc8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -20,7 +20,7 @@ stdenv.mkDerivation (args // {
postPatch = ''
export ZLIB="$(find ${zlib.out}/lib -type f | sort | head -n1)"
export LZ4="$(find ${lz4.out}/lib -type f | sort | head -n1)"
export LZ4="$(find ${lz4.lib}/lib -type f | sort | head -n1)"
'';
nativeBuildInputs = lib.optionals stdenv.hostPlatform.isDarwin ([ cctools darwin.autoSignDarwinBinariesHook ]);