make urxvt install its terminfo file, see longDescription
svn path=/nixpkgs/trunk/; revision=16122
This commit is contained in:
parent
1b9dbe740b
commit
5b638a94a5
@ -1,20 +1,28 @@
|
|||||||
args: with args;
|
args: with args;
|
||||||
stdenv.mkDerivation (rec {
|
stdenv.mkDerivation (rec {
|
||||||
pname = "rxvt-unicode";
|
pname = "rxvt-unicode";
|
||||||
version = "9.02";
|
version = "9.06";
|
||||||
|
|
||||||
name = "${pname}-${version}";
|
name = "${pname}-${version}";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "http://dist.schmorp.de/rxvt-unicode/Attic/${name}.tar.bz2";
|
url = "http://dist.schmorp.de/rxvt-unicode/Attic/${name}.tar.bz2";
|
||||||
sha256 = "234b9a3e3f88c4984b1e909f8028638fc3b61d801d8afaa9cd08154b1a480a31";
|
sha256 = "8ef9359c01059efd330626c6cd7b082be9bf10587f2b9fe84caa43a84aa576d1";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ libX11 libXt libXft ];
|
buildInputs = [ libX11 libXt libXft ncurses /* required to build the terminfo file */ ];
|
||||||
configureFlags = "--disable-perl";
|
|
||||||
|
preConfigure=''
|
||||||
|
configureFlags="--disable-perl";
|
||||||
|
export TERMINFO=$out/share/terminfo # without this the terminfo won't be compiled by tic, see man tic
|
||||||
|
'';
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
description = "rxvt-unicode is a clone of the well known terminal emulator rxvt.";
|
description = "rxvt-unicode is a clone of the well known terminal emulator rxvt.";
|
||||||
|
longDescription = "
|
||||||
|
you should put this into your .bashrc
|
||||||
|
export TERMINFO=~/.nix-profile/share/terminfo
|
||||||
|
";
|
||||||
homepage = "http://software.schmorp.de/pkg/rxvt-unicode.html";
|
homepage = "http://software.schmorp.de/pkg/rxvt-unicode.html";
|
||||||
};
|
};
|
||||||
})
|
})
|
||||||
|
@ -6906,7 +6906,7 @@ let
|
|||||||
|
|
||||||
# = urxvt
|
# = urxvt
|
||||||
rxvt_unicode = import ../applications/misc/rxvt_unicode {
|
rxvt_unicode = import ../applications/misc/rxvt_unicode {
|
||||||
inherit lib fetchurl stdenv perl;
|
inherit lib fetchurl stdenv perl ncurses;
|
||||||
inherit (xlibs) libXt libX11 libXft;
|
inherit (xlibs) libXt libX11 libXft;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user