rxvt added

svn path=/nixpkgs/trunk/; revision=9256
This commit is contained in:
Marc Weber 2007-09-05 08:25:23 +00:00
parent 121ab831d7
commit 3c596b4e2c
2 changed files with 22 additions and 0 deletions

View file

@ -0,0 +1,17 @@
args:
args.stdenv.mkDerivation {
name = "rxvt-2.6.4";
src = args.fetchurl {
url = http://downloads.sourceforge.net/rxvt/rxvt-2.6.4.tar.gz;
sha256 = "0hi29whjv8v11nkjbq1i6ms411v6csykghmlpkmayfjn9nxr02xg";
};
buildInputs =(with args; [ libX11 libXt ]);
meta = {
description = "colour vt102 terminal emulator with less features and lower memory consumption";
homepage = http://www.rxvt.org/;
license = "GPL";
};
}

View file

@ -3450,6 +3450,11 @@ rec {
inherit fetchurl stdenv;
};
rxvt = import ../applications/misc/rxvt {
inherit lib fetchurl stdenv;
inherit (xlibs) libXt libX11;
};
slim = import ../applications/display-managers/slim {
inherit fetchurl stdenv x11 libjpeg libpng freetype pam;
inherit (xlibs) libXmu;