From mboxrd@z Thu Jan 1 00:00:00 1970 From: John Darrington Subject: [PATCH] gnu: glade New variable Date: Sat, 8 Feb 2014 19:21:38 +0100 Message-ID: <1391883698-4891-1-git-send-email-jmd@gnu.org> Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:38815) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WCCXP-0003qT-IM for guix-devel@gnu.org; Sat, 08 Feb 2014 13:22:04 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1WCCXK-0000e5-P8 for guix-devel@gnu.org; Sat, 08 Feb 2014 13:21:59 -0500 List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org To: guix-devel@gnu.org Cc: John Darrington * 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 5d17b01..ce1e355 100644 --- a/gnu/packages/gnome.scm +++ b/gnu/packages/gnome.scm @@ -523,3 +523,31 @@ API add-ons to make GTK+ widgets OpenGL-capable.") enable quick & easy development of user interfaces for the GTK+ toolkit and the GNOME desktop environment.") (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