flake: don't include cross in default devshell
This commit is contained in:
parent
b08e97efea
commit
e8efa56401
17
flake.nix
17
flake.nix
|
@ -47,7 +47,22 @@
|
||||||
});
|
});
|
||||||
|
|
||||||
devShells = forEachSupportedSystem ({ pkgs, cranePkgs, lib }: {
|
devShells = forEachSupportedSystem ({ pkgs, cranePkgs, lib }: {
|
||||||
default = pkgs.mkShell ({
|
default = pkgs.mkShell {
|
||||||
|
inputsFrom = [ cranePkgs.magic-nix-cache ];
|
||||||
|
packages = with pkgs; [
|
||||||
|
bashInteractive
|
||||||
|
cranePkgs.rustNightly
|
||||||
|
|
||||||
|
cargo-bloat
|
||||||
|
cargo-edit
|
||||||
|
cargo-udeps
|
||||||
|
cargo-watch
|
||||||
|
|
||||||
|
age
|
||||||
|
];
|
||||||
|
};
|
||||||
|
|
||||||
|
cross = pkgs.mkShell ({
|
||||||
inputsFrom = [ cranePkgs.magic-nix-cache ];
|
inputsFrom = [ cranePkgs.magic-nix-cache ];
|
||||||
packages = with pkgs; [
|
packages = with pkgs; [
|
||||||
bashInteractive
|
bashInteractive
|
||||||
|
|
Loading…
Reference in a new issue