crystal: add support for passing custom build options when using the shard builder

main
Peter Hoeg 2 years ago
parent d4de0d5628
commit 8a9421f028
  1. 2
      pkgs/development/compilers/crystal/build-package.nix

@ -77,7 +77,7 @@ stdenv.mkDerivation (mkDerivationArgs // {
'')
crystalBinaries)
++ lib.optional (format == "shards")
"shards build --local --production ${lib.concatStringsSep " " defaultOptions}"
"shards build --local --production ${lib.concatStringsSep " " (args.options or defaultOptions)}"
++ [ "runHook postBuild" ]));
installPhase = args.installPhase or (lib.concatStringsSep "\n" ([

Loading…
Cancel
Save