mirror of
https://github.com/nix-community/docker-nixpkgs.git
synced 2026-01-11 12:30:36 -05:00
14 lines
190 B
Nix
14 lines
190 B
Nix
{ channel ? "nixos-unstable" }@args:
|
|
with import ./. args;
|
|
mkShell {
|
|
buildInputs = [
|
|
jq
|
|
skopeo
|
|
];
|
|
|
|
shellHook = ''
|
|
# try to work aroud build issues
|
|
unset TMPDIR
|
|
'';
|
|
}
|