docker-nixpkgs/shell.nix
2019-02-06 12:29:42 +01:00

13 lines
190 B
Nix

{ channel ? "nixos-unstable" }@args:
with import ./. args;
mkShell {
buildInputs = [
jq
skopeo
];
shellHook = ''
# try to work aroud build issues
unset TMPDIR
'';
}