From mboxrd@z Thu Jan 1 00:00:00 1970 From: =?utf-8?B?5a6L5paH5q2m?= Subject: [PATCH 2/2] gnu: Add libwnck Date: Mon, 08 Dec 2014 23:03:32 +0800 Message-ID: <87h9x69oaj.fsf@gmail.com> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:51098) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Xxzqh-0008Ha-Kr for guix-devel@gnu.org; Mon, 08 Dec 2014 10:03:49 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Xxzqb-0002K6-Db for guix-devel@gnu.org; Mon, 08 Dec 2014 10:03:43 -0500 Received: from mail-pd0-x22b.google.com ([2607:f8b0:400e:c02::22b]:45448) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Xxzqb-0002Jo-5E for guix-devel@gnu.org; Mon, 08 Dec 2014 10:03:37 -0500 Received: by mail-pd0-f171.google.com with SMTP id y13so5298194pdi.16 for ; Mon, 08 Dec 2014 07:03:36 -0800 (PST) Received: from akarin ([59.172.248.3]) by mx.google.com with ESMTPSA id fv4sm36538968pbd.47.2014.12.08.07.03.33 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Mon, 08 Dec 2014 07:03:35 -0800 (PST) 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 --=-=-= Content-Type: text/plain This is after: [PATCH]: gnu: Add startup-notification --=-=-= Content-Type: text/x-patch Content-Disposition: attachment; filename=0002-gnu-Add-libwnck.patch >From 5383f469603146abc102f70165e2bea9538b3d34 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=AE=8B=E6=96=87=E6=AD=A6?= Date: Mon, 8 Dec 2014 23:00:41 +0800 Subject: [PATCH 2/2] gnu: Add libwnck. * gnu/packages/gnome.scm (libwnck, libwnck-1): New variables. --- gnu/packages/gnome.scm | 46 +++++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 45 insertions(+), 1 deletion(-) diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm index 5fa892a..c2bd90c 100644 --- a/gnu/packages/gnome.scm +++ b/gnu/packages/gnome.scm @@ -46,7 +46,8 @@ #:use-module (gnu packages xml) #:use-module (gnu packages gl) #:use-module (gnu packages compression) - #:use-module (gnu packages xorg)) + #:use-module (gnu packages xorg) + #:use-module (gnu packages xdisorg)) (define-public brasero (package @@ -1119,6 +1120,49 @@ widgets built in the loading process.") controls using the Bonobo component framework.") (license license:lgpl2.0+))) +(define-public libwnck + (package + (name "libwnck") + (version "3.14.0") + (source (origin + (method url-fetch) + (uri (string-append "mirror://gnome/sources/" name "/" + (version-major+minor version) "/" + name "-" version ".tar.xz")) + (sha256 + (base32 "074jww04z8g9r1acndqap79wx4kbm3rpkf4lcg1v82b66iv0027m")))) + (build-system gnu-build-system) + (native-inputs + `(("pkg-config" ,pkg-config) + ("intltool" ,intltool))) + (propagated-inputs + `(("gtk+" ,gtk+))) + (inputs + `(("startup-notification" ,startup-notification) + ("libxres" ,libxres))) + (home-page "https://developer.gnome.org/libwnck/") + (synopsis "Window Navigator Construction Kit") + (description + "Libwnck is the Window Navigator Construction Kit, a library for use in +writing pagers, tasklists, and more generally applications that are dealing +with window management. It tries hard to respect the Extended Window Manager +Hints specification (EWMH).") + (license license:lgpl2.0+))) + +(define-public libwnck-1 + (package (inherit libwnck) + (name "libwnck") + (version "2.30.7") + (source (origin + (method url-fetch) + (uri (string-append "mirror://gnome/sources/" name "/" + (version-major+minor version) "/" + name "-" version ".tar.xz")) + (sha256 + (base32 + "15713yl0f8f3p99jzqqfmbicrdswd3vwpx7r3bkf1bgh6d9lvs4b")))) + (propagated-inputs + `(("gtk+" ,gtk+-2))))) (define-public goffice (package -- 2.1.2 --=-=-=--