gnu: lxterminal: Update to 0.3.0.
* gnu/packages/lxde.scm (lxterminal): Update to 0.3.0. [arguments]: Disable tests. [source]: Update to use new '.tar.xz' tarball. Signed-off-by: Marius Bakke <mbakke@fastmail.com>
This commit is contained in:
parent
34ab353849
commit
dc29cc7710
|
@ -1,6 +1,7 @@
|
||||||
;;; GNU Guix --- Functional package management for GNU
|
;;; GNU Guix --- Functional package management for GNU
|
||||||
;;; Copyright © 2015 Mathieu Lirzin <mthl@openmailbox.org>
|
;;; Copyright © 2015 Mathieu Lirzin <mthl@openmailbox.org>
|
||||||
;;; Copyright © 2016 Efraim Flashner <efraim@flashner.co.il>
|
;;; Copyright © 2016 Efraim Flashner <efraim@flashner.co.il>
|
||||||
|
;;; Copyright © 2017 ng0 <contact.ng0@cryptolab.net>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
;;;
|
;;;
|
||||||
|
@ -143,16 +144,20 @@ toolkit. It allows users to monitor and control of running processes.")
|
||||||
(define-public lxterminal
|
(define-public lxterminal
|
||||||
(package
|
(package
|
||||||
(name "lxterminal")
|
(name "lxterminal")
|
||||||
(version "0.2.0")
|
(version "0.3.0")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append "mirror://sourceforge/lxde/LXTerminal"
|
(uri (string-append "mirror://sourceforge/lxde/LXTerminal"
|
||||||
"%20%28terminal%20emulator%29/LXTerminal%20"
|
"%20%28terminal%20emulator%29/LXTerminal%20"
|
||||||
version "/" name "-" version ".tar.gz"))
|
version "/" name "-" version ".tar.xz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"1brb506vmnncih8nyvlrckrrn6msbsvz2vwbm7bsqwigcnchwjqp"))))
|
"1yf76s15zvfw0h42b0ay1slpq47khgjmcry8ki2z812zar9lchia"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
|
(arguments
|
||||||
|
`(;; Tests for "po" fail with "No rule to make target '../src/encoding.c'
|
||||||
|
;; needed by 'lxterminal.pot'. Stop."
|
||||||
|
#:tests? #f))
|
||||||
(inputs `(("gtk+" ,gtk+-2)
|
(inputs `(("gtk+" ,gtk+-2)
|
||||||
("vte" ,vte/gtk+-2)))
|
("vte" ,vte/gtk+-2)))
|
||||||
(native-inputs `(("intltool" ,intltool)
|
(native-inputs `(("intltool" ,intltool)
|
||||||
|
|
Loading…
Reference in New Issue