Unverified Commit 4af70378 authored by Donovan Glover's avatar Donovan Glover Committed by GitHub
Browse files

buildCrystalPackage: pass `env` variable(s) down from args (#498486)

parents 3fc55065 921a535c
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -108,7 +108,7 @@ stdenv.mkDerivation (
        ++ [ "runHook postConfigure" ]
      ));

    env = {
    env = args.env or { } // {
      CRFLAGS = lib.concatStringsSep " " defaultOptions;

      PREFIX = placeholder "out";