colmena/dev-shell.nix

11 lines
166 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
];
2021-02-11 11:55:45 -08:00
shellHook = ''
export NIX_PATH=nixpkgs=${pkgs.path}
'';
2020-12-15 20:58:39 -08:00
}