diff options
author | Fabian Harfert <fhmgufs@web.de> | 2016-02-06 13:10:39 +0800 |
---|---|---|
committer | 宋文武 <iyzsong@gmail.com> | 2016-02-06 13:32:59 +0800 |
commit | 9ba5198c4cbdb1f59cc219655f6822fdb99b58cf (patch) | |
tree | e2e6e9c6acbd68fcd74a5aef0a15a773e071db45 /gnu/packages/gtk.scm | |
parent | eb2afd000cbc342a4a893f335abd7df439f83244 (diff) | |
download | patches-9ba5198c4cbdb1f59cc219655f6822fdb99b58cf.tar patches-9ba5198c4cbdb1f59cc219655f6822fdb99b58cf.tar.gz |
gnu: Add gtk-engines.
* gnu/packages/gtk.scm (gtk-engines): New variable.
Diffstat (limited to 'gnu/packages/gtk.scm')
-rw-r--r-- | gnu/packages/gtk.scm | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/gnu/packages/gtk.scm b/gnu/packages/gtk.scm index 42915f7cc5..1b39222da4 100644 --- a/gnu/packages/gtk.scm +++ b/gnu/packages/gtk.scm @@ -1131,3 +1131,32 @@ information.") typically used to document the public API of GTK+ and GNOME libraries, but it can also be used to document application code.") (license license:gpl2+))) + +(define-public gtk-engines + (package + (name "gtk-engines") + (version "2.20.2") + (source (origin + (method url-fetch) + (uri (string-append "mirror://gnome/sources/" name "/" + (version-major+minor version) "/" + name "-" version ".tar.bz2")) + (sha256 + (base32 + "1db65pb0j0mijmswrvpgkdabilqd23x22d95hp5kwxvcramq1dhm")))) + (build-system gnu-build-system) + (arguments + `(#:configure-flags + `("--enable-animation"))) + (native-inputs + `(("pkg-config" ,pkg-config) + ("intltool" ,intltool))) + (propagated-inputs + `(("gtk+" ,gtk+-2))) ; required by gtk-engines-2.pc + (home-page "http://live.gnome.org/GnomeArt") + (synopsis "Theming engines for GTK+ 2.x") + (description + "This package contains the standard GTK+ 2.x theming engines including +Clearlooks, Crux, High Contrast, Industrial, LighthouseBlue, Metal, Mist, +Redmond95 and ThinIce.") + (license (list license:gpl2+ license:lgpl2.1+)))) |