unofficial mirror of guix-devel@gnu.org 
 help / color / mirror / code / Atom feed
* [PATCH] gnu: add vte-ng
@ 2016-03-29 23:52 Mckinley Olsen
  2016-03-30 21:54 ` Alex Kost
  0 siblings, 1 reply; 6+ messages in thread
From: Mckinley Olsen @ 2016-03-29 23:52 UTC (permalink / raw)
  To: guix-devel


[-- Attachment #1.1: Type: text/plain, Size: 78 bytes --]

Package vte-ng, which is needed by termite terminal (which I hope to
package)

[-- Attachment #1.2: Type: text/html, Size: 103 bytes --]

[-- Attachment #2: 0001-gnu-add-vte-ng.patch --]
[-- Type: application/octet-stream, Size: 1926 bytes --]

From c06b9fe54d33d6c8624426771fbb52606f751f58 Mon Sep 17 00:00:00 2001
From: McKinley Olsen <mck.olsen@gmail.com>
Date: Mon, 28 Mar 2016 15:03:06 -0600
Subject: [PATCH] gnu: add vte-ng.

* gnu/packages/gnome.scm (vte-ng): added vte-ng package.
---
 gnu/packages/gnome.scm | 31 +++++++++++++++++++++++++++++++
 1 file changed, 31 insertions(+)

diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm
index eebb547..376ee74 100644
--- a/gnu/packages/gnome.scm
+++ b/gnu/packages/gnome.scm
@@ -1755,6 +1755,37 @@ gnome-terminal, but can also be used to embed a console/terminal in games,
 editors, IDEs, etc.")
     (license license:lgpl2.1+)))
 
+(define-public vte-ng
+  (package
+    (inherit vte)
+    (name "vte-ng")
+    (version "0.42.4.a")
+    (native-inputs
+      `(("gtk-doc" ,gtk-doc)
+        ("gperf" ,gperf)
+        ("autoconf" ,autoconf)
+        ("automake" ,automake)
+        ("libtool" ,libtool)
+        ,@(package-native-inputs vte)))
+    (source (origin
+              (method git-fetch)
+              (uri (git-reference
+                    (url (string-append "https://github.com/thestinger/"
+                                        name
+                                        ".git"))
+                    (commit version)))
+              (file-name (string-append name "-" version))
+              (sha256
+               (base32
+                "1w91lz30j5lrskp9ds5j3nn27m5mpdpn7nlcvf5y1w63mpmjg8k1"))))
+    (arguments
+      `(#:phases (modify-phases %standard-phases
+                  (add-after 'unpack 'bootstrap
+                    (lambda _
+                      (setenv "NOCONFIGURE" "true")
+                      (zero? (system* "sh" "autogen.sh")))))))))
+
+
 ;; provides vte 2.90, required for some terminal emulators
 ;; tilda bug: https://github.com/lanoxx/tilda/issues/94
 ;; pantheon-terminal bug: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=788021
-- 
2.7.3


^ permalink raw reply related	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2016-06-01 13:30 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-03-29 23:52 [PATCH] gnu: add vte-ng Mckinley Olsen
2016-03-30 21:54 ` Alex Kost
2016-04-09  8:42   ` Alex Kost
     [not found]     ` <CAM5ENzCezyQd9xniEPrMTf9PCviqBcDwqKt+0OLR+5ybFXZgww@mail.gmail.com>
2016-04-10  7:42       ` Alex Kost
2016-05-31 20:41         ` Mckinley Olsen
2016-06-01 13:30           ` 宋文武

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).