about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorMathew Polzin <matt.polzin@gmail.com>2024-09-28 09:39:38 -0500
committerGitHub <noreply@github.com>2024-09-28 09:39:38 -0500
commitf60e814dc84f15a5ba00d154e9b14941532c8a25 (patch)
tree1d1df66af76b1ed90da1987fcc75a4aecf25ac85 /pkgs
parent33dced051a39f552a1f14a81416fe1ab4ddec14a (diff)
parentc65e60fd2108e2b79a3b835ed9bbdb5293c4fca0 (diff)
chez-racket: Fix build failure (#344725)
Diffstat (limited to 'pkgs')
-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 e9a9e42346d60..71bb710d20487 100644
--- a/pkgs/development/compilers/chez-racket/shared.nix
+++ b/pkgs/development/compilers/chez-racket/shared.nix
@@ -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 ]);