From mboxrd@z Thu Jan 1 00:00:00 1970 From: Fabian Harfert Subject: [PATCH] gnu: Add murrine. Date: Thu, 4 Feb 2016 23:13:56 +0100 Message-ID: <1454624036-23387-1-git-send-email-fhmgufs@web.de> References: Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:49728) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aRSA5-000559-LC for guix-devel@gnu.org; Thu, 04 Feb 2016 17:14:02 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1aRSA2-0001q1-W9 for guix-devel@gnu.org; Thu, 04 Feb 2016 17:14:01 -0500 Received: from mout.web.de ([212.227.17.12]:63758) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aRSA2-0001px-N2 for guix-devel@gnu.org; Thu, 04 Feb 2016 17:13:58 -0500 In-Reply-To: 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 * gnu/packages/gtk.scm (murrine): New variable. --- gnu/packages/gtk.scm | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) diff --git a/gnu/packages/gtk.scm b/gnu/packages/gtk.scm index 3d8a652..cf13294 100644 --- a/gnu/packages/gtk.scm +++ b/gnu/packages/gtk.scm @@ -1159,3 +1159,32 @@ can also be used to document application code.") Clearlooks, Crux, High Contrast, Industrial, LighthouseBlue, Metal, Mist, Redmond95 and ThinIce.") (license (list license:gpl2+ license:lgpl2.0+)))) + +(define-public murrine + (package + (name "murrine") + (version "0.98.2") + (source (origin + (method url-fetch) + (uri (string-append "mirror://gnome/sources/" name "/" + (version-major+minor version) "/" + name "-" version ".tar.xz")) + (sha256 + (base32 + "129cs5bqw23i76h3nmc29c9mqkm9460iwc8vkl7hs4xr07h8mip9")))) + (build-system gnu-build-system) + (arguments + `(#:configure-flags + `("--enable-animation" + "--enable-animationrtl"))) + (native-inputs + `(("pkg-config" ,pkg-config) + ("intltool" ,intltool))) + (propagated-inputs + `(("gtk+" ,gtk+-2))) + (home-page "http://live.gnome.org/GnomeArt") + (synopsis "Cairo-based Gtk+ 2 theming engine") + (description + "The murrine Gtk+ 2 engine is a cairo-based theming engine. It is named +after the glass artworks done by Venicians glass blowers.") + (license license:gpl2+))) -- 2.7.0