Merge pull request #226636 from MatthewCroughan/mc/fix-nixos-shell

nixos-shell: add jq dependency

authored by Jörg Thalheim and committed by GitHub 93f1a51c 2208d9f7

+2 -2
+2 -2
pkgs/tools/virtualization/nixos-shell/default.nix
··· 1 - { lib, stdenv, nix, fetchFromGitHub, makeWrapper }: 1 + { lib, stdenv, nix, jq, fetchFromGitHub, makeWrapper }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "nixos-shell"; ··· 15 15 16 16 postInstall = '' 17 17 wrapProgram $out/bin/nixos-shell \ 18 - --prefix PATH : ${lib.makeBinPath [ nix ]} 18 + --prefix PATH : ${lib.makeBinPath [ nix jq ]} 19 19 ''; 20 20 21 21 installFlags = [ "PREFIX=${placeholder "out"}" ];