nixpkgs/pkgs/applications/misc/rxvt_unicode/default.nix

73 lines
2.6 KiB
Nix
Raw Normal View History

{ stdenv, fetchurl, makeDesktopItem, perlSupport ? true, libX11, libXt, libXft,
2016-11-11 17:29:46 +00:00
ncurses, perl, fontconfig, freetype, pkgconfig, libXrender,
2019-05-22 11:03:39 +00:00
gdkPixbufSupport ? true, gdk-pixbuf, unicode3Support ? true }:
2013-09-27 20:30:49 +00:00
let
2016-05-16 07:18:27 +00:00
pname = "rxvt-unicode";
2016-05-04 14:38:47 +00:00
version = "9.22";
2016-11-11 17:29:46 +00:00
description = "A clone of the well-known terminal emulator rxvt";
desktopItem = makeDesktopItem {
2019-09-08 23:38:31 +00:00
name = pname;
2016-11-11 17:29:46 +00:00
exec = "urxvt";
icon = "utilities-terminal";
comment = description;
desktopName = "URxvt";
2019-09-08 23:38:31 +00:00
genericName = pname;
2016-11-11 17:29:46 +00:00
categories = "System;TerminalEmulator;";
};
in
2019-08-13 21:52:01 +00:00
stdenv.mkDerivation ({
2016-05-16 07:18:27 +00:00
name = "${pname}${if perlSupport then "-with-perl" else ""}${if unicode3Support then "-with-unicode3" else ""}-${version}";
src = fetchurl {
url = "http://dist.schmorp.de/rxvt-unicode/Attic/rxvt-unicode-${version}.tar.bz2";
2016-05-04 14:38:47 +00:00
sha256 = "1pddjn5ynblwfrdmskylrsxb9vfnk3w4jdnq2l8xn2pspkljhip9";
};
buildInputs =
2013-09-27 20:30:49 +00:00
[ libX11 libXt libXft ncurses /* required to build the terminfo file */
fontconfig freetype pkgconfig libXrender ]
++ stdenv.lib.optional perlSupport perl
2019-05-22 11:03:39 +00:00
++ stdenv.lib.optional gdkPixbufSupport gdk-pixbuf;
outputs = [ "out" "terminfo" ];
patches = [
./rxvt-unicode-9.06-font-width.patch
./rxvt-unicode-256-color-resources.patch
]
++ stdenv.lib.optional stdenv.isDarwin ./rxvt-unicode-makefile-phony.patch;
preConfigure =
''
mkdir -p $terminfo/share/terminfo
configureFlags="--with-terminfo=$terminfo/share/terminfo --enable-256-color ${if perlSupport then "--enable-perl" else "--disable-perl"} ${if unicode3Support then "--enable-unicode3" else "--disable-unicode3"}";
export TERMINFO=$terminfo/share/terminfo # without this the terminfo won't be compiled by tic, see man tic
NIX_CFLAGS_COMPILE="$NIX_CFLAGS_COMPILE -I${freetype.dev}/include/freetype2"
2019-01-05 07:47:15 +00:00
NIX_LDFLAGS="$NIX_LDFLAGS -lfontconfig -lXrender -lpthread "
''
# make urxvt find its perl file lib/perl5/site_perl is added to PERL5LIB automatically
+ stdenv.lib.optionalString perlSupport ''
2019-01-05 07:47:15 +00:00
mkdir -p $out/$(dirname ${perl.libPrefix})
ln -s $out/lib/urxvt $out/${perl.libPrefix}
'';
postInstall = ''
mkdir -p $out/nix-support
echo "$terminfo" >> $out/nix-support/propagated-user-env-packages
2016-11-11 17:29:46 +00:00
cp -r ${desktopItem}/share/applications/ $out/share/
'';
2016-11-11 17:29:46 +00:00
meta = with stdenv.lib; {
inherit description;
homepage = http://software.schmorp.de/pkg/rxvt-unicode.html;
downloadPage = "http://dist.schmorp.de/rxvt-unicode/Attic/";
maintainers = with maintainers; [ rnhmjoj ];
2016-11-11 17:29:46 +00:00
platforms = platforms.unix;
license = licenses.gpl3;
};
})