docker-nixpkgs/shell.nix
zimbatm f90912f967
release.nix -> default.nix
the default should be to build all the images
2019-12-17 23:35:43 +01:00

12 lines
195 B
Nix

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