docker-nixpkgs/shell.nix
zimbatm 949ac55e09
stop accepting nixpkgs as an argument
set the NIX_PATH to select the version of nixpkgs to use
2019-12-15 15:57:40 +01:00

12 lines
188 B
Nix

with import ./.;
mkShell {
buildInputs = [
jq
skopeo
] ++ lib.optional (pkgs ? mdsh) pkgs.mdsh;
shellHook = ''
# try to work aroud build issues
unset TMPDIR
'';
}