[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
02/02: gnu: Add murrine.
From: |
??? |
Subject: |
02/02: gnu: Add murrine. |
Date: |
Sat, 06 Feb 2016 05:42:30 +0000 |
iyzsong pushed a commit to branch master
in repository guix.
commit b7807bb2fabd6afcbd32afa866db2242a2319c08
Author: Fabian Harfert <address@hidden>
Date: Sat Feb 6 13:34:34 2016 +0800
gnu: Add murrine.
* gnu/packages/gtk.scm (murrine): New variable.
---
gnu/packages/gtk.scm | 30 ++++++++++++++++++++++++++++++
1 files changed, 30 insertions(+), 0 deletions(-)
diff --git a/gnu/packages/gtk.scm b/gnu/packages/gtk.scm
index 1b39222..312bee8 100644
--- a/gnu/packages/gtk.scm
+++ b/gnu/packages/gtk.scm
@@ -9,6 +9,7 @@
;;; Copyright © 2015 Andy Wingo <address@hidden>
;;; Copyright © 2015 David Hashe <address@hidden>
;;; Copyright © 2016 Efraim Flashner <address@hidden>
+;;; Copyright © 2016 Fabian Harfert <address@hidden>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -1160,3 +1161,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.1+))))
+
+(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 theming engine for GTK+ 2.x")
+ (description
+ "Murrine is a cairo-based GTK+ theming engine. It is named after the
+glass artworks done by Venicians glass blowers.")
+ (license license:gpl2+)))