colmena/dev-shell.nix

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