12 lines
188 B
Nix
12 lines
188 B
Nix
with import ./.;
|
|
mkShell {
|
|
buildInputs = [
|
|
jq
|
|
skopeo
|
|
] ++ lib.optional (pkgs ? mdsh) pkgs.mdsh;
|
|
|
|
shellHook = ''
|
|
# try to work aroud build issues
|
|
unset TMPDIR
|
|
'';
|
|
}
|