mhw pushed a commit to branch gnome-updates
in repository guix.
commit de1215e20b31e1fa90fb83cf3ff50c8d1bbcbdd2
Author: Mark H Weaver <[email protected]>
Date: Mon Jan 9 03:33:30 2017 -0500
gnu: vte: Update to 0.46.1.
* gnu/packages/gnome.scm (vte): Update to 0.46.1.
[propagated-inputs]: Add pcre2.
---
gnu/packages/gnome.scm | 8 +++++---
1 file changed, 5 insertions(+), 3 deletions(-)
diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm
index fcd4f47..62a2348 100644
--- a/gnu/packages/gnome.scm
+++ b/gnu/packages/gnome.scm
@@ -89,6 +89,7 @@
#:use-module (gnu packages image)
#:use-module (gnu packages networking)
#:use-module (gnu packages password-utils)
+ #:use-module (gnu packages pcre)
#:use-module (gnu packages perl)
#:use-module (gnu packages photo)
#:use-module (gnu packages pkg-config)
@@ -1777,7 +1778,7 @@ libraries written in C.")
(define-public vte
(package
(name "vte")
- (version "0.44.2")
+ (version "0.46.1")
(source (origin
(method url-fetch)
(uri (string-append "mirror://gnome/sources/" name "/"
@@ -1785,7 +1786,7 @@ libraries written in C.")
name "-" version ".tar.xz"))
(sha256
(base32
- "0j899ccrkzh7208w29c835m1yms0cas5cxkck8x6l4xv2i45ksm1"))))
+ "1ipmnfazvhzjp5pjw90mmxbkizivnh7gnlqqml94lw2rqa5wy048"))))
(build-system gnu-build-system)
(arguments
;; XXX: fails to compile tests with the default flags.
@@ -1804,7 +1805,8 @@ libraries written in C.")
("xmllint" ,libxml2)))
(propagated-inputs
`(("gtk+" ,gtk+) ;required by vte-2.91.pc
- ("gnutls" ,gnutls))) ;ditto
+ ("gnutls" ,gnutls) ;ditto
+ ("pcre2" ,pcre2))) ;ditto
(home-page "http://www.gnome.org/")
(synopsis "Virtual Terminal Emulator")
(description