xvfb-run: fix and enable strictDeps (#412449)

authored by Aleksana and committed by GitHub ce513907 657f19ac

+7
+7
pkgs/tools/misc/xvfb-run/default.nix
··· 13 coreutils, 14 installShellFiles, 15 xterm, 16 }: 17 stdenvNoCC.mkDerivation { 18 pname = "xvfb-run"; ··· 29 makeWrapper 30 installShellFiles 31 ]; 32 33 dontUnpack = true; 34 dontBuild = true;
··· 13 coreutils, 14 installShellFiles, 15 xterm, 16 + bashNonInteractive, 17 }: 18 stdenvNoCC.mkDerivation { 19 pname = "xvfb-run"; ··· 30 makeWrapper 31 installShellFiles 32 ]; 33 + 34 + buildInputs = [ 35 + bashNonInteractive 36 + ]; 37 + 38 + strictDeps = true; 39 40 dontUnpack = true; 41 dontBuild = true;