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,
|
||||
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 =
|
||||
''
|
||||
|
@ -8314,6 +8314,7 @@ let
|
||||
# = urxvt
|
||||
rxvt_unicode = callPackage ../applications/misc/rxvt_unicode {
|
||||
perlSupport = true;
|
||||
gdkPixbufSupport = true;
|
||||
};
|
||||
|
||||
sakura = callPackage ../applications/misc/sakura {
|
||||
|
Loading…
Reference in New Issue
Block a user