Merge pull request #780 from grwlf/urxvt-gdkpixbuf
urxvt: Enable Gdk_pixbuf to be able to set custom icons/images
This commit is contained in:
commit
7d032bc892
@ -1,5 +1,5 @@
|
|||||||
{ stdenv, fetchurl, perlSupport, libX11, libXt, libXft, ncurses, perl,
|
{ stdenv, fetchurl, perlSupport, libX11, libXt, libXft, ncurses, perl,
|
||||||
fontconfig, freetype, pkgconfig, libXrender }:
|
fontconfig, freetype, pkgconfig, libXrender, gdkPixbufSupport, gdk_pixbuf }:
|
||||||
|
|
||||||
let
|
let
|
||||||
name = "rxvt-unicode";
|
name = "rxvt-unicode";
|
||||||
@ -19,7 +19,8 @@ stdenv.mkDerivation (rec {
|
|||||||
buildInputs =
|
buildInputs =
|
||||||
[ libX11 libXt libXft ncurses /* required to build the terminfo file */
|
[ libX11 libXt libXft ncurses /* required to build the terminfo file */
|
||||||
fontconfig freetype pkgconfig libXrender ]
|
fontconfig freetype pkgconfig libXrender ]
|
||||||
++ stdenv.lib.optional perlSupport perl;
|
++ stdenv.lib.optional perlSupport perl
|
||||||
|
++ stdenv.lib.optional gdkPixbufSupport gdk_pixbuf;
|
||||||
|
|
||||||
preConfigure =
|
preConfigure =
|
||||||
''
|
''
|
||||||
|
@ -8314,6 +8314,7 @@ let
|
|||||||
# = urxvt
|
# = urxvt
|
||||||
rxvt_unicode = callPackage ../applications/misc/rxvt_unicode {
|
rxvt_unicode = callPackage ../applications/misc/rxvt_unicode {
|
||||||
perlSupport = true;
|
perlSupport = true;
|
||||||
|
gdkPixbufSupport = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
sakura = callPackage ../applications/misc/sakura {
|
sakura = callPackage ../applications/misc/sakura {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user