rxvt added
svn path=/nixpkgs/trunk/; revision=9256
This commit is contained in:
parent
121ab831d7
commit
3c596b4e2c
17
pkgs/applications/misc/rxvt/default.nix
Normal file
17
pkgs/applications/misc/rxvt/default.nix
Normal 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";
|
||||||
|
};
|
||||||
|
}
|
@ -3450,6 +3450,11 @@ rec {
|
|||||||
inherit fetchurl stdenv;
|
inherit fetchurl stdenv;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
rxvt = import ../applications/misc/rxvt {
|
||||||
|
inherit lib fetchurl stdenv;
|
||||||
|
inherit (xlibs) libXt libX11;
|
||||||
|
};
|
||||||
|
|
||||||
slim = import ../applications/display-managers/slim {
|
slim = import ../applications/display-managers/slim {
|
||||||
inherit fetchurl stdenv x11 libjpeg libpng freetype pam;
|
inherit fetchurl stdenv x11 libjpeg libpng freetype pam;
|
||||||
inherit (xlibs) libXmu;
|
inherit (xlibs) libXmu;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user