colmena/dev-shell.nix

8 lines
102 B
Nix
Raw Normal View History

2020-12-15 20:58:39 -08:00
let
2021-02-10 00:39:25 -08:00
pkgs = import ./pkgs.nix;
2020-12-15 20:58:39 -08:00
in pkgs.mkShell {
buildInputs = with pkgs; [
2021-02-10 00:39:25 -08:00
rustc cargo
2020-12-15 20:58:39 -08:00
];
}