infra/shell.nix

18 lines
238 B
Nix
Raw Normal View History

with import <nixpkgs> {};
let
in
stdenv.mkDerivation {
name = "infra-env";
buildInputs = [
(pkgs.callPackage ./nix/pkgs/just.nix {})
2018-11-04 13:41:45 +01:00
git-crypt
vcsh
gnupg
];
# Set Environment Variables
RUST_BACKTRACE = 1;
}