gnu: vte-ng: Update to 0.56.2.a.
* gnu/packages/gnome.scm (vte-ng): Update to 0.56.2.a. [native-inputs]: Add GCC-7. [arguments]: Add GCC7 workaround.
This commit is contained in:
parent
a0d44bb09f
commit
03c59a2525
|
@ -2324,7 +2324,7 @@ editors, IDEs, etc.")
|
||||||
(package
|
(package
|
||||||
(inherit vte)
|
(inherit vte)
|
||||||
(name "vte-ng")
|
(name "vte-ng")
|
||||||
(version "0.54.2.a")
|
(version "0.56.2.a")
|
||||||
(home-page "https://github.com/thestinger/vte-ng")
|
(home-page "https://github.com/thestinger/vte-ng")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method git-fetch)
|
(method git-fetch)
|
||||||
|
@ -2332,10 +2332,11 @@ editors, IDEs, etc.")
|
||||||
(file-name (git-file-name name version))
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"1r7d9m07cpdr4f7rw3yx33hmp4jmsk0dn5byq5wgksb2qjbc4ags"))))
|
"1lmba6i0abifmvvfb1q63ql6zh6d38148kp6skmkggiib2hi5dki"))))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("gtk-doc" ,gtk-doc)
|
`(("gtk-doc" ,gtk-doc)
|
||||||
("gperf" ,gperf)
|
("gperf" ,gperf)
|
||||||
|
("gcc" ,gcc-7)
|
||||||
("autoconf" ,autoconf)
|
("autoconf" ,autoconf)
|
||||||
("automake" ,automake)
|
("automake" ,automake)
|
||||||
("libtool" ,libtool)
|
("libtool" ,libtool)
|
||||||
|
@ -2344,6 +2345,9 @@ editors, IDEs, etc.")
|
||||||
`(#:phases (modify-phases %standard-phases
|
`(#:phases (modify-phases %standard-phases
|
||||||
(replace 'bootstrap
|
(replace 'bootstrap
|
||||||
(lambda _
|
(lambda _
|
||||||
|
;; Work around GCC7 problem: <https://bugs.gnu.org/30756>.
|
||||||
|
(for-each unsetenv '("C_INCLUDE_PATH" "CPLUS_INCLUDE_PATH"))
|
||||||
|
|
||||||
(setenv "NOCONFIGURE" "true")
|
(setenv "NOCONFIGURE" "true")
|
||||||
(invoke "sh" "autogen.sh"))))))
|
(invoke "sh" "autogen.sh"))))))
|
||||||
(synopsis "Enhanced VTE terminal widget")
|
(synopsis "Enhanced VTE terminal widget")
|
||||||
|
|
Loading…
Reference in New Issue