colmena/dev-shell.nix

8 lines
102 B
Nix
Raw Normal View History

2020-12-16 05:58:39 +01:00
let
2021-02-10 09:39:25 +01:00
pkgs = import ./pkgs.nix;
2020-12-16 05:58:39 +01:00
in pkgs.mkShell {
buildInputs = with pkgs; [
2021-02-10 09:39:25 +01:00
rustc cargo
2020-12-16 05:58:39 +01:00
];
}