13 lines
190 B
Nix
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
|
|
'';
|
|
}
|