summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gnu/packages/xdisorg.scm33
1 files changed, 33 insertions, 0 deletions
diff --git a/gnu/packages/xdisorg.scm b/gnu/packages/xdisorg.scm
index 67aa34a84b3..bef0b38374a 100644
--- a/gnu/packages/xdisorg.scm
+++ b/gnu/packages/xdisorg.scm
@@ -5,6 +5,7 @@
5;;; Copyright © 2014, 2015 Alex Kost <alezost@gmail.com> 5;;; Copyright © 2014, 2015 Alex Kost <alezost@gmail.com>
6;;; Copyright © 2013, 2015 Ludovic Courtès <ludo@gnu.org> 6;;; Copyright © 2013, 2015 Ludovic Courtès <ludo@gnu.org>
7;;; Copyright © 2015 Mathieu Lirzin <mthl@openmailbox.org> 7;;; Copyright © 2015 Mathieu Lirzin <mthl@openmailbox.org>
8;;; Copyright © 2015 Alexander I.Grafov <grafov@gmail.com>
8;;; 9;;;
9;;; This file is part of GNU Guix. 10;;; This file is part of GNU Guix.
10;;; 11;;;
@@ -453,3 +454,35 @@ to access all XBindKeys internals, so you can have key combinations, double
453clicks or timed double clicks take actions. Also all functions that work in 454clicks or timed double clicks take actions. Also all functions that work in
454Guile will work for XBindKeys.") 455Guile will work for XBindKeys.")
455 (license license:gpl2+))) 456 (license license:gpl2+)))
457
458(define-public rxvt-unicode
459 (package
460 (name "rxvt-unicode")
461 (version "9.21")
462 (source
463 (origin
464 (method url-fetch)
465 (uri (string-append
466 "http://dist.schmorp.de/rxvt-unicode/"
467 name "-"
468 version
469 ".tar.bz2"))
470 (sha256
471 (base32
472 "0swmi308v5yxsddrdhvi4cch88k2bbs2nffpl5j5m2f55gbhw9vm"))))
473 (build-system gnu-build-system)
474 (inputs
475 `(("libXft" ,libxft)
476 ("libX11" ,libx11)))
477 (native-inputs
478 `(("perl" ,perl)
479 ("pkg-config" ,pkg-config)))
480 (home-page "http://software.schmorp.de/pkg/rxvt-unicode.html")
481 (synopsis "Rxvt clone with XFT and unicode support")
482 (description "Rxvt-unicode (urxvt) is a colour vt102 terminal emulator
483intended as an xterm replacement for users who do not require features such as
484Tektronix 4014 emulation and toolkit-style configurability. It supports
485unicode, XFT and may be extended with Perl plugins. It also comes with a
486client/daemon pair that lets you open any number of terminal windows from
487within a single process.")
488 (license license:gpl3+)))