From 42f2c2b9d5435f42e4b9d69eab78edd768cdd9ea Mon Sep 17 00:00:00 2001 From: "Alexander I.Grafov (Axel)" Date: Mon, 9 Mar 2015 05:03:39 +0300 Subject: gnu: Add rxvt-unicode. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * gnu/packages/xdisorg.scm (rxvt-unicode): New variable. Co-authored-by: Ludovic Courtès --- gnu/packages/xdisorg.scm | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) (limited to 'gnu/packages') diff --git a/gnu/packages/xdisorg.scm b/gnu/packages/xdisorg.scm index 67aa34a84b..bef0b38374 100644 --- a/gnu/packages/xdisorg.scm +++ b/gnu/packages/xdisorg.scm @@ -5,6 +5,7 @@ ;;; Copyright © 2014, 2015 Alex Kost ;;; Copyright © 2013, 2015 Ludovic Courtès ;;; Copyright © 2015 Mathieu Lirzin +;;; Copyright © 2015 Alexander I.Grafov ;;; ;;; This file is part of GNU Guix. ;;; @@ -453,3 +454,35 @@ (define-public xbindkeys clicks or timed double clicks take actions. Also all functions that work in Guile will work for XBindKeys.") (license license:gpl2+))) + +(define-public rxvt-unicode + (package + (name "rxvt-unicode") + (version "9.21") + (source + (origin + (method url-fetch) + (uri (string-append + "http://dist.schmorp.de/rxvt-unicode/" + name "-" + version + ".tar.bz2")) + (sha256 + (base32 + "0swmi308v5yxsddrdhvi4cch88k2bbs2nffpl5j5m2f55gbhw9vm")))) + (build-system gnu-build-system) + (inputs + `(("libXft" ,libxft) + ("libX11" ,libx11))) + (native-inputs + `(("perl" ,perl) + ("pkg-config" ,pkg-config))) + (home-page "http://software.schmorp.de/pkg/rxvt-unicode.html") + (synopsis "Rxvt clone with XFT and unicode support") + (description "Rxvt-unicode (urxvt) is a colour vt102 terminal emulator +intended as an xterm replacement for users who do not require features such as +Tektronix 4014 emulation and toolkit-style configurability. It supports +unicode, XFT and may be extended with Perl plugins. It also comes with a +client/daemon pair that lets you open any number of terminal windows from +within a single process.") + (license license:gpl3+))) -- cgit v1.2.3