docker-nixpkgs/shell.nix
zimbatm a720d8ee4f
remove 19.03 and 19.09 channels
Those are not receiving any more updates. Fix Nix invocations.
2020-07-07 13:00:21 +02:00

16 lines
303 B
Nix

let
nixpkgs = builtins.fetchTarball "channel:nixos-20.03";
pkgs = import nixpkgs { config = {}; overlays = []; };
in
with pkgs;
mkShell {
buildInputs = [
jq
skopeo
] ++ lib.optional (pkgs ? mdsh) pkgs.mdsh;
shellHook = ''
# try to work aroud build issues
unset TMPDIR
'';
}