forked from mirrors/nixpkgs
xdg_utils: fix xdg-screensaver
This commit is contained in:
parent
792161895f
commit
ab67f36e73
|
@ -1,6 +1,6 @@
|
||||||
{ stdenv, fetchurl, fetchFromGitHub
|
{ stdenv, fetchurl, fetchFromGitHub
|
||||||
, file, libxslt, docbook_xml_dtd_412, docbook_xsl, xmlto
|
, file, libxslt, docbook_xml_dtd_412, docbook_xsl, xmlto
|
||||||
, w3m, which, gnugrep, gnused, coreutils
|
, w3m, which, gnugrep, gnused, coreutils, xset
|
||||||
, mimiSupport ? false, gawk ? null }:
|
, mimiSupport ? false, gawk ? null }:
|
||||||
|
|
||||||
assert mimiSupport -> gawk != null;
|
assert mimiSupport -> gawk != null;
|
||||||
|
@ -38,6 +38,7 @@ stdenv.mkDerivation rec {
|
||||||
file() { ${file}/bin/file "$@"; }\
|
file() { ${file}/bin/file "$@"; }\
|
||||||
awk() { ${gawk}/bin/awk "$@"; }\
|
awk() { ${gawk}/bin/awk "$@"; }\
|
||||||
sort() { ${coreutils}/bin/sort "$@"; }\
|
sort() { ${coreutils}/bin/sort "$@"; }\
|
||||||
|
xset() { ${xset}/bin/xset "$@"; }\
|
||||||
&#' -i "$out"/bin/*
|
&#' -i "$out"/bin/*
|
||||||
|
|
||||||
substituteInPlace $out/bin/xdg-open \
|
substituteInPlace $out/bin/xdg-open \
|
||||||
|
|
Loading…
Reference in a new issue