8 lines
112 B
Nix
8 lines
112 B
Nix
{ channel ? "nixos-unstable" }@args:
|
|
with import ./. args;
|
|
mkShell {
|
|
buildInputs = [
|
|
jq
|
|
skopeo
|
|
];
|
|
}
|