mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 23:22:37 +00:00
rxvt-unicode version 9.02, disabled embedded perl interpreter
svn path=/nixpkgs/trunk/; revision=10716
This commit is contained in:
parent
5f8dd658cb
commit
ad73224657
@ -1,16 +1,20 @@
|
||||
args: with args;
|
||||
stdenv.mkDerivation {
|
||||
name = "rxvt-unicode-8.9";
|
||||
|
||||
buildInputs = [ libX11 libXt libXft perl ];
|
||||
|
||||
src = fetchurl {
|
||||
url = http://dist.schmorp.de/rxvt-unicode/Attic/rxvt-unicode-8.9.tar.bz2;
|
||||
sha256 = "89858c5bfe72dba037cd3435b2221269580f3c699553fe24ee468ddec8831d27";
|
||||
stdenv.mkDerivation (rec {
|
||||
pname = "rxvt-unicode";
|
||||
version = "9.02";
|
||||
|
||||
name = "${pname}-${version}";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://dist.schmorp.de/rxvt-unicode/Attic/${name}.tar.bz2";
|
||||
sha256 = "234b9a3e3f88c4984b1e909f8028638fc3b61d801d8afaa9cd08154b1a480a31";
|
||||
};
|
||||
|
||||
|
||||
buildInputs = [ libX11 libXt libXft ];
|
||||
configureFlags = "--disable-perl";
|
||||
|
||||
meta = {
|
||||
description = "rxvt-unicode is a clone of the well known terminal emulator rxvt.";
|
||||
homepage = "http://software.schmorp.de/pkg/rxvt-unicode.html";
|
||||
};
|
||||
}
|
||||
})
|
||||
|
@ -5153,7 +5153,7 @@ rec {
|
||||
|
||||
# = urxvt
|
||||
rxvt_unicode = import ../applications/misc/rxvt_unicode {
|
||||
inherit lib fetchurl stdenv perl;
|
||||
inherit lib fetchurl stdenv;
|
||||
inherit (xlibs) libXt libX11 libXft;
|
||||
};
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user