guix-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[PATCH] gnu: glade New variable


From: John Darrington
Subject: [PATCH] gnu: glade New variable
Date: Wed, 5 Feb 2014 21:27:20 +0100

* gnu/packages/gnome.scm (glade): New variable.
---
 gnu/packages/gnome.scm |   28 ++++++++++++++++++++++++++++
 1 file changed, 28 insertions(+)

diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm
index cadea72..35417ea 100644
--- a/gnu/packages/gnome.scm
+++ b/gnu/packages/gnome.scm
@@ -530,3 +530,31 @@ API add-ons to make GTK+ widgets OpenGL-capable.")
     (description
      "ekiga is a gobject-based plugins engine, and is targetted at giving nthe 
API")
     (license lgpl2.0+)))
+
+
+
+(define-public glade3
+  (package
+    (name "glade")
+    (version "3.8.4")
+    (source
+     (origin
+      (method url-fetch)
+      (uri (string-append "mirror://gnome/sources/" name "/"
+                          (substring version 0 (string-rindex version #\.)) "/"
+                          name "3-" version ".tar.xz"))
+              (sha256
+               (base32 
"021xgq2l18w3rvwms9aq2idm0fk66vwb4f777gs0qh3ap5shgbn7"))))
+    (build-system gnu-build-system)
+    (inputs
+     `(("gtk+" ,gtk+-2)
+       ("libxml2" ,libxml2)))
+    (native-inputs
+     `(("intltool" ,intltool)
+       ("python" ,python)
+       ("pkg-config" ,pkg-config)))
+    (home-page "https://glade.gnome.org";)
+    (synopsis "GTK+ RAD tool")
+    (description "Glade is a RAD tool to enable quick & easy development of
+user interfaces for the GTK+ toolkit and the GNOME desktop environment.") 
+    (license lgpl2.0+)))
-- 
1.7.10.4




reply via email to

[Prev in Thread] Current Thread [Next in Thread]