diff --git a/flake.nix b/flake.nix index 5bfc9e22732..98ed1bcf5c2 100644 --- a/flake.nix +++ b/flake.nix @@ -207,9 +207,11 @@ }; packages = { + default = nargo; + # Nix flakes cannot build more than one derivation in one command (see https://github.com/NixOS/nix/issues/5591) - # so we use `symlinkJoin` to build everything as our default package. - default = pkgs.symlinkJoin { name = "noir"; paths = [ nargo noir_wasm noirc_abi_wasm ]; }; + # so we use `symlinkJoin` to build everything as the "all" package. + all = pkgs.symlinkJoin { name = "all"; paths = [ nargo noir_wasm noirc_abi_wasm ]; }; # We also export individual packages to enable `nix build .#nargo -L`, etc. inherit nargo;