gnu: vte: Update to 0.44.0.
* gnu/packages/gnome.scm (vte): Update to 0.44.0. [arguments]: New field.
This commit is contained in:
parent
884bb4ef24
commit
b384bfcfa4
|
@ -1724,7 +1724,7 @@ libraries written in C.")
|
||||||
(define-public vte
|
(define-public vte
|
||||||
(package
|
(package
|
||||||
(name "vte")
|
(name "vte")
|
||||||
(version "0.42.3")
|
(version "0.44.0")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append "mirror://gnome/sources/" name "/"
|
(uri (string-append "mirror://gnome/sources/" name "/"
|
||||||
|
@ -1732,8 +1732,16 @@ libraries written in C.")
|
||||||
name "-" version ".tar.xz"))
|
name "-" version ".tar.xz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"1832mrw2hhgjipbsfsv2fmdnwnar4rkx589ciz008bg8x908mscn"))))
|
"1ahjxysiv38q91gfq2wddcbvndlggfr8ynls25m42pw83akv38wk"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
|
(arguments
|
||||||
|
;; XXX: fails to compile tests with the default flags.
|
||||||
|
;; vteconv.cc:774:40:
|
||||||
|
;; error: missing sentinel in function call [-Werror=format=]
|
||||||
|
;; g_test_init (&argc, &argv, NULL);
|
||||||
|
;;
|
||||||
|
;; cc1plus: some warnings being treated as errors
|
||||||
|
'(#:configure-flags '("CXXFLAGS=-Wformat=0")))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("pkg-config" ,pkg-config)
|
`(("pkg-config" ,pkg-config)
|
||||||
("intltool" ,intltool)
|
("intltool" ,intltool)
|
||||||
|
|
Loading…
Reference in New Issue