crystal.buildCrystalPackage: fix a precedence mistake that prevents overriding configure phase

This commit is contained in:
Ulysses Zhan 2024-03-22 00:36:14 -07:00
parent 20f77aa099
commit 23dfcf5c2d
1 changed files with 2 additions and 3 deletions

View File

@ -71,8 +71,7 @@ let
in
stdenv.mkDerivation (mkDerivationArgs // {
configurePhase = args.configurePhase or lib.concatStringsSep "\n"
(
configurePhase = args.configurePhase or (lib.concatStringsSep "\n" (
[
"runHook preConfigure"
]
@ -83,7 +82,7 @@ stdenv.mkDerivation (mkDerivationArgs // {
"cp shard.lock lib/.shards.info"
]
++ [ "runHook postConfigure" ]
);
));
CRFLAGS = lib.concatStringsSep " " defaultOptions;