From mboxrd@z Thu Jan 1 00:00:00 1970 From: =?UTF-8?q?=E5=AE=8B=E6=96=87=E6=AD=A6?= Subject: [PATCH] gnu: Add adwaita-icon-theme. Date: Tue, 12 May 2015 18:45:01 +0800 Message-ID: <1431427501-25929-1-git-send-email-iyzsong@gmail.com> Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:36034) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Ys7fo-0003N8-UO for guix-devel@gnu.org; Tue, 12 May 2015 06:44:32 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Ys7fk-0005bn-PC for guix-devel@gnu.org; Tue, 12 May 2015 06:44:28 -0400 Received: from mail-pd0-x22f.google.com ([2607:f8b0:400e:c02::22f]:34782) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Ys7fk-0005bF-IO for guix-devel@gnu.org; Tue, 12 May 2015 06:44:24 -0400 Received: by pdbqa5 with SMTP id qa5so5444111pdb.1 for ; Tue, 12 May 2015 03:44:23 -0700 (PDT) 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/gnome.scm (adwaita-icon-theme): New variable. --- gnu/packages/gnome.scm | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm index 8adcbdd..2f5f125 100644 --- a/gnu/packages/gnome.scm +++ b/gnu/packages/gnome.scm @@ -393,6 +393,22 @@ update-desktop-database: updates the database containing a cache of MIME types "Icons for the GNOME desktop.") (license license:lgpl3))) ; or Creative Commons BY-SA 3.0 +(define-public adwaita-icon-theme + (package (inherit gnome-icon-theme) + (name "adwaita-icon-theme") + (version "3.16.0") + (source (origin + (method url-fetch) + (uri (string-append "mirror://gnome/sources/" name "/" + (version-major+minor version) "/" + name "-" version ".tar.xz")) + (sha256 + (base32 + "1cbfdypxfg74krqrklh4za64jhvskbp206l14fs739cw14xsvj53")))) + (native-inputs + ;; XXX: gtk-encode-symbolic-svg lacks SVG support. + (alist-delete "gtk+" (package-native-inputs gnome-icon-theme))))) + (define-public shared-mime-info (package (name "shared-mime-info") -- 2.2.1