nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
fork

Configure Feed

Select the types of activity you want to include in your feed.

xdg_utils: fix xdg-screensaver

(cherry picked from commit ab67f36e7376e6e5d09f5bdfb00944ef2f7abaf0)

+2 -1
+2 -1
pkgs/tools/X11/xdg-utils/default.nix
··· 1 1 { stdenv, fetchurl, fetchFromGitHub 2 2 , file, libxslt, docbook_xml_dtd_412, docbook_xsl, xmlto 3 - , w3m, which, gnugrep, gnused, coreutils 3 + , w3m, which, gnugrep, gnused, coreutils, xset 4 4 , mimiSupport ? false, gawk ? null }: 5 5 6 6 assert mimiSupport -> gawk != null; ··· 38 38 file() { ${file}/bin/file "$@"; }\ 39 39 awk() { ${gawk}/bin/awk "$@"; }\ 40 40 sort() { ${coreutils}/bin/sort "$@"; }\ 41 + xset() { ${xset}/bin/xset "$@"; }\ 41 42 &#' -i "$out"/bin/* 42 43 43 44 substituteInPlace $out/bin/xdg-open \