summary refs log tree commit diff
path: root/pkgs/applications/misc
diff options
context:
space:
mode:
authorEdward Tjörnhammar <ed@cflags.cc>2013-09-27 22:30:49 +0200
committerEdward Tjörnhammar <ed@cflags.cc>2013-09-27 22:30:49 +0200
commit596581914fea4ad1e734e596e310323f925f892d (patch)
tree0078f60082ef43734c3eeca0908dce1b0b9c7f35 /pkgs/applications/misc
parentbb69f658eac0ff6da3ea35cec21532892750d072 (diff)
downloadnixlib-596581914fea4ad1e734e596e310323f925f892d.tar
nixlib-596581914fea4ad1e734e596e310323f925f892d.tar.gz
nixlib-596581914fea4ad1e734e596e310323f925f892d.tar.bz2
nixlib-596581914fea4ad1e734e596e310323f925f892d.tar.lz
nixlib-596581914fea4ad1e734e596e310323f925f892d.tar.xz
nixlib-596581914fea4ad1e734e596e310323f925f892d.tar.zst
nixlib-596581914fea4ad1e734e596e310323f925f892d.zip
URxvt: Use 256 colors not just 88.
Diffstat (limited to 'pkgs/applications/misc')
-rw-r--r--pkgs/applications/misc/rxvt_unicode/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/applications/misc/rxvt_unicode/default.nix b/pkgs/applications/misc/rxvt_unicode/default.nix
index 2afa6c086961..8c16d290f86e 100644
--- a/pkgs/applications/misc/rxvt_unicode/default.nix
+++ b/pkgs/applications/misc/rxvt_unicode/default.nix
@@ -1,7 +1,7 @@
 { stdenv, fetchurl, perlSupport, libX11, libXt, libXft, ncurses, perl,
   fontconfig, freetype, pkgconfig, libXrender, gdkPixbufSupport, gdk_pixbuf }:
 
-let 
+let
   name = "rxvt-unicode";
   version = "9.16";
   n = "${name}-${version}";
@@ -17,14 +17,14 @@ stdenv.mkDerivation (rec {
   };
 
   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 ]
     ++ stdenv.lib.optional perlSupport perl
     ++ stdenv.lib.optional gdkPixbufSupport gdk_pixbuf;
 
   preConfigure =
     ''
-      configureFlags="--with-terminfo=$out/share/terminfo ${if perlSupport then "--enable-perl" else "--disable-perl"}";
+      configureFlags="--with-terminfo=$out/share/terminfo --enable-256-color ${if perlSupport then "--enable-perl" else "--disable-perl"}";
       export TERMINFO=$out/share/terminfo # without this the terminfo won't be compiled by tic, see man tic
       NIX_CFLAGS_COMPILE="$NIX_CFLAGS_COMPILE -I${freetype}/include/freetype2"
       NIX_LDFLAGS="$NIX_LDFLAGS -lfontconfig -lXrender "