mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 16:33:15 +00:00
rxvt-unicode: add optional perl support (I'm keen on tabs and the search feature)
svn path=/nixpkgs/trunk/; revision=17025
This commit is contained in:
parent
7c02d7eb0b
commit
059b19e693
@ -1,20 +1,34 @@
|
|||||||
args: with args;
|
args: with args;
|
||||||
stdenv.mkDerivation (rec {
|
# args.perlSupport: enables perl interpreter support
|
||||||
pname = "rxvt-unicode";
|
# see man urxvtperl for details
|
||||||
|
let
|
||||||
|
name = "rxvt-unicode";
|
||||||
version = "9.06";
|
version = "9.06";
|
||||||
|
n = "${name}-${version}";
|
||||||
|
in
|
||||||
|
stdenv.mkDerivation (rec {
|
||||||
|
|
||||||
name = "${pname}-${version}";
|
name = "${n}${if perlSupport then "-with-perl" else ""}";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "http://dist.schmorp.de/rxvt-unicode/Attic/${name}.tar.bz2";
|
url = "http://dist.schmorp.de/rxvt-unicode/Attic/${n}.tar.bz2";
|
||||||
sha256 = "8ef9359c01059efd330626c6cd7b082be9bf10587f2b9fe84caa43a84aa576d1";
|
sha256 = "8ef9359c01059efd330626c6cd7b082be9bf10587f2b9fe84caa43a84aa576d1";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ libX11 libXt libXft ncurses /* required to build the terminfo file */ ];
|
buildInputs = [ libX11 libXt libXft ncurses /* required to build the terminfo file */ ]
|
||||||
|
++ lib.optional perlSupport perl;
|
||||||
|
|
||||||
preConfigure=''
|
preConfigure=''
|
||||||
configureFlags="--disable-perl";
|
configureFlags="${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
|
export TERMINFO=$out/share/terminfo # without this the terminfo won't be compiled by tic, see man tic
|
||||||
|
''
|
||||||
|
# make urxvt find its perl file lib/perl5/site_perl is added to PERL5LIB automatically
|
||||||
|
+ (if perlSupport then ''
|
||||||
|
ensureDir $out/lib/perl5
|
||||||
|
ln -s $out/{lib/urxvt,lib/perl5/site_perl}
|
||||||
|
'' else "");
|
||||||
|
|
||||||
|
postInstall = ''
|
||||||
'';
|
'';
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
|
@ -7075,9 +7075,10 @@ let
|
|||||||
};
|
};
|
||||||
|
|
||||||
# = urxvt
|
# = urxvt
|
||||||
rxvt_unicode = import ../applications/misc/rxvt_unicode {
|
rxvt_unicode = makeOverridable (import ../applications/misc/rxvt_unicode) {
|
||||||
inherit lib fetchurl stdenv perl ncurses;
|
inherit lib fetchurl stdenv perl ncurses;
|
||||||
inherit (xlibs) libXt libX11 libXft;
|
inherit (xlibs) libXt libX11 libXft;
|
||||||
|
perlSupport = false;
|
||||||
};
|
};
|
||||||
|
|
||||||
sbagen = import ../applications/misc/sbagen {
|
sbagen = import ../applications/misc/sbagen {
|
||||||
|
Loading…
Reference in New Issue
Block a user