diff options
author | Marius Bakke <mbakke@fastmail.com> | 2019-10-20 19:30:54 +0200 |
---|---|---|
committer | Marius Bakke <mbakke@fastmail.com> | 2019-10-21 00:26:14 +0200 |
commit | 24f4fcbe2620fc9cbafe804443ebbb7ee6d8359a (patch) | |
tree | 6d886ad81516abdf676a194aed48c03301e937ee | |
parent | c10c77a795a39a72be722c4c516684853a00f2df (diff) | |
download | patches-24f4fcbe2620fc9cbafe804443ebbb7ee6d8359a.tar patches-24f4fcbe2620fc9cbafe804443ebbb7ee6d8359a.tar.gz |
gnu: vte-ng: Update to 0.58.2.a.
* gnu/packages/gnome.scm (vte-ng): Update to 0.58.2.a.
[build-system]: New field.
[arguments]: Set #:configure-flags. Remove #:phases.
[native-inputs]: Remove GPERF, AUTOCONF, AUTOMAKE and LIBTOOL.
-rw-r--r-- | gnu/packages/gnome.scm | 15 |
1 files changed, 4 insertions, 11 deletions
diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm index fafb93be08..781f450621 100644 --- a/gnu/packages/gnome.scm +++ b/gnu/packages/gnome.scm @@ -2339,7 +2339,7 @@ editors, IDEs, etc.") (package (inherit vte) (name "vte-ng") - (version "0.56.2.a") + (version "0.58.2.a") (home-page "https://github.com/thestinger/vte-ng") (source (origin (method git-fetch) @@ -2347,20 +2347,13 @@ editors, IDEs, etc.") (file-name (git-file-name name version)) (sha256 (base32 - "1lmba6i0abifmvvfb1q63ql6zh6d38148kp6skmkggiib2hi5dki")))) + "0rnm5c6m3abbm81jsfdas0y80z299ny54gr4syn4bfrms3s4g19l")))) + (build-system meson-build-system) (native-inputs `(("gtk-doc" ,gtk-doc) - ("gperf" ,gperf) - ("autoconf" ,autoconf) - ("automake" ,automake) - ("libtool" ,libtool) ,@(package-native-inputs vte))) (arguments - `(#:phases (modify-phases %standard-phases - (replace 'bootstrap - (lambda _ - (setenv "NOCONFIGURE" "true") - (invoke "sh" "autogen.sh")))))) + `(#:configure-flags '("-Ddocs=true"))) (synopsis "Enhanced VTE terminal widget") (description "VTE is a library (libvte) implementing a terminal emulator widget for |