docker-nixpkgs/shell.nix
2019-02-19 22:00:59 +01:00

13 lines
183 B
Nix

{ nixpkgs ? <nixpkgs> }@args:
with import ./. args;
mkShell {
buildInputs = [
jq
skopeo
];
shellHook = ''
# try to work aroud build issues
unset TMPDIR
'';
}