diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2018-01-10 02:07:11 +0100 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2018-01-10 02:08:36 +0100 |
commit | 85afaceb10019a21823e6cad01e757b74474759b (patch) | |
tree | 5b20b88234ee76e5e67174a95fcc544da5643978 /gnu | |
parent | edfa2eee918c7971a63bad5aea64f70237c7ed8a (diff) |
gnu: xterm: Update to 331.
* gnu/packages/xorg.scm (xterm): Update to 331.
[arguments]: Remove now-default ‘--enable-256-color’ from #:configure-flags.
now enabled by default.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/xorg.scm | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/gnu/packages/xorg.scm b/gnu/packages/xorg.scm index 8677c59641..32cf7e93fa 100644 --- a/gnu/packages/xorg.scm +++ b/gnu/packages/xorg.scm @@ -14,6 +14,7 @@ ;;; Copyright © 2017 Marius Bakke <mbakke@fastmail.com> ;;; Copyright © 2017 Rutger Helling <rhelling@mykolab.com> ;;; Copyright © 2017 Arun Isaac <arunisaac@systemreboot.net> +;;; Copyright © 2018 Tobias Geerinckx-Rice <me@tobias.gr> ;;; ;;; This file is part of GNU Guix. ;;; @@ -5780,20 +5781,19 @@ to answer a question. Xmessage can also exit after a specified time.") (define-public xterm (package (name "xterm") - (version "330") + (version "331") (source (origin (method url-fetch) (uri (string-append "ftp://ftp.invisible-island.net/xterm/" "xterm-" version ".tgz")) (sha256 (base32 - "1psnfmqd23v9gxj8a98nzrgvymrk0p1whwqi92gy15bbkzrgkvks")))) + "047gk58hvj64974sg259ss5gixj7pac6halmjfz4cc6r1yimds4s")))) (build-system gnu-build-system) (arguments - '(#:configure-flags '("--enable-wide-chars" "--enable-256-color" - "--enable-load-vt-fonts" "--enable-i18n" - "--enable-doublechars" "--enable-luit" - "--enable-mini-luit") + '(#:configure-flags '("--enable-wide-chars" "--enable-load-vt-fonts" + "--enable-i18n" "--enable-doublechars" + "--enable-luit" "--enable-mini-luit") #:tests? #f)) (native-inputs `(("pkg-config" ,pkg-config))) |