about summary refs log tree commit diff
path: root/pkgs/applications/misc/rxvt_unicode
diff options
context:
space:
mode:
authorMichael Raskin <7c6f434c@mail.ru>2014-05-27 02:28:59 -0700
committerMichael Raskin <7c6f434c@mail.ru>2014-05-27 02:28:59 -0700
commit75607107ea15d700fa8cd40230393c7eb48188ac (patch)
treef974a000b6e65b27d5e070833eb872ab13915017 /pkgs/applications/misc/rxvt_unicode
parentcfb788471927676e102ed8188e4f03d92274d2d3 (diff)
parent0bc17d9fa93ef966f17f589f471ffc0bc5a16ad1 (diff)
downloadnixlib-75607107ea15d700fa8cd40230393c7eb48188ac.tar
nixlib-75607107ea15d700fa8cd40230393c7eb48188ac.tar.gz
nixlib-75607107ea15d700fa8cd40230393c7eb48188ac.tar.bz2
nixlib-75607107ea15d700fa8cd40230393c7eb48188ac.tar.lz
nixlib-75607107ea15d700fa8cd40230393c7eb48188ac.tar.xz
nixlib-75607107ea15d700fa8cd40230393c7eb48188ac.tar.zst
nixlib-75607107ea15d700fa8cd40230393c7eb48188ac.zip
Merge pull request #2721 from evolarium/urxvt
Add unicode3 option to rxvt_unicode
Diffstat (limited to 'pkgs/applications/misc/rxvt_unicode')
-rw-r--r--pkgs/applications/misc/rxvt_unicode/default.nix7
1 files changed, 4 insertions, 3 deletions
diff --git a/pkgs/applications/misc/rxvt_unicode/default.nix b/pkgs/applications/misc/rxvt_unicode/default.nix
index 6e4b5b17fcd9..7392123673ad 100644
--- a/pkgs/applications/misc/rxvt_unicode/default.nix
+++ b/pkgs/applications/misc/rxvt_unicode/default.nix
@@ -1,5 +1,6 @@
 { stdenv, fetchurl, perlSupport, libX11, libXt, libXft, ncurses, perl,
-  fontconfig, freetype, pkgconfig, libXrender, gdkPixbufSupport, gdk_pixbuf }:
+  fontconfig, freetype, pkgconfig, libXrender, gdkPixbufSupport, gdk_pixbuf,
+  unicode3Support }:
 
 let
   name = "rxvt-unicode";
@@ -9,7 +10,7 @@ in
 
 stdenv.mkDerivation (rec {
 
-  name = "${n}${if perlSupport then "-with-perl" else ""}";
+  name = "${n}${if perlSupport then "-with-perl" else ""}${if unicode3Support then "-with-unicode3" else ""}";
 
   src = fetchurl {
     url = "http://dist.schmorp.de/rxvt-unicode/Attic/rxvt-unicode-${version}.tar.bz2";
@@ -32,7 +33,7 @@ stdenv.mkDerivation (rec {
   preConfigure =
     ''
       mkdir -p $terminfo/share/terminfo
-      configureFlags="--with-terminfo=$terminfo/share/terminfo --enable-256-color ${if perlSupport then "--enable-perl" else "--disable-perl"}";
+      configureFlags="--with-terminfo=$terminfo/share/terminfo --enable-256-color ${if perlSupport then "--enable-perl" else "--disable-perl"} ${if unicode3Support then "--enable-unicode3" else "--disable-unicode3"}";
       export TERMINFO=$terminfo/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 "