From afd90f8d62de252931be9c1fa3a5c6e3b1074b04 Mon Sep 17 00:00:00 2001 From: Marius Bakke Date: Wed, 21 Nov 2018 22:57:14 +0100 Subject: gnu: vte-ng: Add a home page. * gnu/packages/gnome.scm (vte-ng)[home-page]: New field. --- gnu/packages/gnome.scm | 1 + 1 file changed, 1 insertion(+) (limited to 'gnu/packages/gnome.scm') diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm index 4a118fe0fc..1420a55f24 100644 --- a/gnu/packages/gnome.scm +++ b/gnu/packages/gnome.scm @@ -2116,6 +2116,7 @@ editors, IDEs, etc.") (inherit vte) (name "vte-ng") (version "0.52.2.a") + (home-page "https://github.com/thestinger/vte-ng") (native-inputs `(("gtk-doc" ,gtk-doc) ("gperf" ,gperf) -- cgit 1.4.1 From 6bc00737b067617481ca207fc8e6aaa6fe441b3a Mon Sep 17 00:00:00 2001 From: Marius Bakke Date: Wed, 21 Nov 2018 22:57:48 +0100 Subject: gnu: vte-ng: Fetch source using git. * gnu/packages/gnome.scm (vte-ng)[source]: Rewrite in terms of GIT-FETCH. --- gnu/packages/gnome.scm | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) (limited to 'gnu/packages/gnome.scm') diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm index 1420a55f24..692e3dedef 100644 --- a/gnu/packages/gnome.scm +++ b/gnu/packages/gnome.scm @@ -2117,6 +2117,13 @@ editors, IDEs, etc.") (name "vte-ng") (version "0.52.2.a") (home-page "https://github.com/thestinger/vte-ng") + (source (origin + (method git-fetch) + (uri (git-reference (url home-page) (commit version))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "1csmjrw3c2avh711xcrn3khqwp4cwz97c3fmyirq2rg0hndng4s3")))) (native-inputs `(("gtk-doc" ,gtk-doc) ("gperf" ,gperf) @@ -2124,14 +2131,6 @@ editors, IDEs, etc.") ("automake" ,automake) ("libtool" ,libtool) ,@(package-native-inputs vte))) - (source (origin - (method url-fetch) - (uri (string-append "https://github.com/thestinger/" - name "/archive/" version ".tar.gz")) - (file-name (string-append name "-" version ".tar.gz")) - (sha256 - (base32 - "1fd65mk7c87k03vhnb2ixkjvv9nja04mfq813iyjji1b11f2sh7v")))) (arguments `(#:phases (modify-phases %standard-phases (replace 'bootstrap -- cgit 1.4.1 From b069c30b52c7c9e2609d3a2f93cc561119932d0d Mon Sep 17 00:00:00 2001 From: Marius Bakke Date: Wed, 21 Nov 2018 22:59:27 +0100 Subject: gnu: vte-ng: Update to 0.54.2.a. * gnu/packages/gnome.scm (vte-ng): Update to 0.54.2.a. --- gnu/packages/gnome.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gnu/packages/gnome.scm') diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm index 692e3dedef..06ec28b342 100644 --- a/gnu/packages/gnome.scm +++ b/gnu/packages/gnome.scm @@ -2115,7 +2115,7 @@ editors, IDEs, etc.") (package (inherit vte) (name "vte-ng") - (version "0.52.2.a") + (version "0.54.2.a") (home-page "https://github.com/thestinger/vte-ng") (source (origin (method git-fetch) @@ -2123,7 +2123,7 @@ editors, IDEs, etc.") (file-name (git-file-name name version)) (sha256 (base32 - "1csmjrw3c2avh711xcrn3khqwp4cwz97c3fmyirq2rg0hndng4s3")))) + "1r7d9m07cpdr4f7rw3yx33hmp4jmsk0dn5byq5wgksb2qjbc4ags")))) (native-inputs `(("gtk-doc" ,gtk-doc) ("gperf" ,gperf) -- cgit 1.4.1