urxvt: Enable Gdk_pixbuf to be able to set custom icons/images

This commit is contained in:
Sergey Mironov 2013-07-26 17:03:18 +04:00
parent 9fe9527f57
commit 60761e94b8
2 changed files with 4 additions and 2 deletions

View File

@ -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 =
'' ''

View File

@ -8289,6 +8289,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 {