diff options
author | Mark H Weaver <mhw@netris.org> | 2017-01-09 03:33:30 -0500 |
---|---|---|
committer | Mark H Weaver <mhw@netris.org> | 2017-01-11 11:33:58 -0500 |
commit | de1215e20b31e1fa90fb83cf3ff50c8d1bbcbdd2 (patch) | |
tree | 96fba94d5fd25ba9e8ff4c6ea6113a0b3656d446 /gnu/packages/gnome.scm | |
parent | 6b7d7e9b6fd04fc16b9a587fd4a0e351ee7c4ee0 (diff) | |
download | guix-de1215e20b31e1fa90fb83cf3ff50c8d1bbcbdd2.tar guix-de1215e20b31e1fa90fb83cf3ff50c8d1bbcbdd2.tar.gz |
gnu: vte: Update to 0.46.1.
* gnu/packages/gnome.scm (vte): Update to 0.46.1.
[propagated-inputs]: Add pcre2.
Diffstat (limited to 'gnu/packages/gnome.scm')
-rw-r--r-- | gnu/packages/gnome.scm | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm index fcd4f47fa8..62a2348143 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 |