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.
This commit is contained in:
Tobias Geerinckx-Rice 2018-01-10 02:07:11 +01:00
parent edfa2eee91
commit 85afaceb10
No known key found for this signature in database
GPG Key ID: 0DB0FF884F556D79

View File

@ -14,6 +14,7 @@
;;; Copyright © 2017 Marius Bakke <mbakke@fastmail.com> ;;; Copyright © 2017 Marius Bakke <mbakke@fastmail.com>
;;; Copyright © 2017 Rutger Helling <rhelling@mykolab.com> ;;; Copyright © 2017 Rutger Helling <rhelling@mykolab.com>
;;; Copyright © 2017 Arun Isaac <arunisaac@systemreboot.net> ;;; Copyright © 2017 Arun Isaac <arunisaac@systemreboot.net>
;;; Copyright © 2018 Tobias Geerinckx-Rice <me@tobias.gr>
;;; ;;;
;;; This file is part of GNU Guix. ;;; 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 (define-public xterm
(package (package
(name "xterm") (name "xterm")
(version "330") (version "331")
(source (origin (source (origin
(method url-fetch) (method url-fetch)
(uri (string-append "ftp://ftp.invisible-island.net/xterm/" (uri (string-append "ftp://ftp.invisible-island.net/xterm/"
"xterm-" version ".tgz")) "xterm-" version ".tgz"))
(sha256 (sha256
(base32 (base32
"1psnfmqd23v9gxj8a98nzrgvymrk0p1whwqi92gy15bbkzrgkvks")))) "047gk58hvj64974sg259ss5gixj7pac6halmjfz4cc6r1yimds4s"))))
(build-system gnu-build-system) (build-system gnu-build-system)
(arguments (arguments
'(#:configure-flags '("--enable-wide-chars" "--enable-256-color" '(#:configure-flags '("--enable-wide-chars" "--enable-load-vt-fonts"
"--enable-load-vt-fonts" "--enable-i18n" "--enable-i18n" "--enable-doublechars"
"--enable-doublechars" "--enable-luit" "--enable-luit" "--enable-mini-luit")
"--enable-mini-luit")
#:tests? #f)) #:tests? #f))
(native-inputs (native-inputs
`(("pkg-config" ,pkg-config))) `(("pkg-config" ,pkg-config)))