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:
Domen Kožar 2013-07-26 06:45:22 -07:00
commit 7d032bc892
2 changed files with 4 additions and 2 deletions

View File

@ -1,5 +1,5 @@
{ stdenv, fetchurl, perlSupport, libX11, libXt, libXft, ncurses, perl,
fontconfig, freetype, pkgconfig, libXrender }:
fontconfig, freetype, pkgconfig, libXrender, gdkPixbufSupport, gdk_pixbuf }:
let
name = "rxvt-unicode";
@ -19,7 +19,8 @@ stdenv.mkDerivation (rec {
buildInputs =
[ libX11 libXt libXft ncurses /* required to build the terminfo file */
fontconfig freetype pkgconfig libXrender ]
++ stdenv.lib.optional perlSupport perl;
++ stdenv.lib.optional perlSupport perl
++ stdenv.lib.optional gdkPixbufSupport gdk_pixbuf;
preConfigure =
''

View File

@ -8314,6 +8314,7 @@ let
# = urxvt
rxvt_unicode = callPackage ../applications/misc/rxvt_unicode {
perlSupport = true;
gdkPixbufSupport = true;
};
sakura = callPackage ../applications/misc/sakura {