4a7f99d55d
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
39 lines
1.4 KiB
Nix
39 lines
1.4 KiB
Nix
{ lib, stdenv, fetchurl
|
|
, pkgconfig, libtool
|
|
, libX11, libXt, libXpm }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "rxvt";
|
|
version = "2.7.10";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/rxvt/${pname}-${version}.tar.gz";
|
|
sha256 = "0jfl71gz3k7zh3kxdb8lxi06kajjnx7bq1rxjgk680l209jxask1";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
buildInputs = [ libtool libX11 libXt libXpm ];
|
|
|
|
configurePhase = ''
|
|
LIBTOOL=${libtool}/bin/libtool ./configure --prefix=$out --enable-everything --enable-smart-resize --enable-256-color
|
|
'';
|
|
|
|
meta = with lib; {
|
|
homepage = "http://rxvt.sourceforge.net/";
|
|
description = "Colour vt102 terminal emulator with less features and lower memory consumption";
|
|
longDescription = ''
|
|
rxvt (acronym for our extended virtual terminal) is a terminal
|
|
emulator for the X Window System, originally written by Rob Nation
|
|
as an extended version of the older xvt terminal by John Bovey of
|
|
University of Kent. Mark Olesen extensively modified it later and
|
|
took over maintenance for several years.
|
|
|
|
rxvt is intended to be a slimmed-down alternate for xterm,
|
|
omitting some of its little-used features, like Tektronix 4014
|
|
emulation and toolkit-style configurability.
|
|
'';
|
|
maintainers = with maintainers; [ AndersonTorres ];
|
|
license = licenses.gpl2;
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|