From 7d3f36518dc3314c2023ac5ad17383978b559a77 Mon Sep 17 00:00:00 2001 From: Andreas Enge Date: Wed, 2 Oct 2013 22:22:21 +0200 Subject: gnu: gnome: Add gnome-icon-theme. * gnu/packages/gnome.scm (gnome-icon-theme): New variable. --- gnu/packages/gnome.scm | 28 +++++++++++++++++++++++++++- 1 file changed, 27 insertions(+), 1 deletion(-) (limited to 'gnu') diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm index c74761d218..66d4b4ee0d 100644 --- a/gnu/packages/gnome.scm +++ b/gnu/packages/gnome.scm @@ -17,7 +17,7 @@ ;;; along with GNU Guix. If not, see . (define-module (gnu packages gnome) - #:use-module ((guix licenses) #:select (gpl2+ lgpl2.1+)) + #:use-module ((guix licenses) #:select (gpl2+ lgpl2.1+ lgpl3)) #:use-module (guix packages) #:use-module (guix download) #:use-module (guix build-system gnu) @@ -110,6 +110,32 @@ (define-public icon-naming-utils GNOME and KDE desktops to the icon names proposed in the specification.") (license lgpl2.1+))) +(define-public gnome-icon-theme + (package + (name "gnome-icon-theme") + (version "3.10.0") + (source + (origin + (method url-fetch) + (uri (string-append "mirror://gnome/sources/" name "/" + (string-copy version 0 (string-rindex version #\.)) "/" + name "-" version ".tar.xz")) + (sha256 + (base32 + "1xinbgkkvlhazj887ajcl13i7kdc1wcca02jwxzvjrvchjsp4m66")))) + (build-system gnu-build-system) + (inputs + `(("gtk+" ,gtk+) + ("icon-naming-utils" ,icon-naming-utils) + ("intltool" ,intltool) + ("pkg-config" ,pkg-config))) + (home-page "http://art.gnome.org/") + (synopsis + "GNOME icon theme") + (description + "Icons for the GNOME desktop.") + (license lgpl3))) ; or Creative Commons BY-SA 3.0 + (define-public libnotify (package (name "libnotify") -- cgit v1.2.3