chickenPackages_4.eggDerivation: move env variables into env

This commit is contained in:
Stefan Frijters
2026-02-17 13:56:27 +01:00
parent 190aa043b0
commit d24a440a41
@@ -26,10 +26,13 @@ stdenv.mkDerivation (
nativeBuildInputs = [ makeWrapper ];
buildInputs = [ chicken ];
CSC_OPTIONS = lib.concatStringsSep " " cscOptions;
env = {
CSC_OPTIONS = lib.concatStringsSep " " cscOptions;
CHICKEN_REPOSITORY = libPath;
CHICKEN_INSTALL_PREFIX = "$out";
CHICKEN_REPOSITORY = libPath;
CHICKEN_INSTALL_PREFIX = "$out";
}
// (args.env or { });
installPhase = ''
runHook preInstall