From 14eeefa2dd611e8dd24637971c60db918a5aa27a Mon Sep 17 00:00:00 2001 From: 宋文武 Date: Tue, 12 May 2015 18:42:37 +0800 Subject: gnu: Add adwaita-icon-theme. * gnu/packages/gnome.scm (adwaita-icon-theme): New variable. --- gnu/packages/gnome.scm | 14 ++++++++++++++ 1 file changed, 14 insertions(+) (limited to 'gnu/packages/gnome.scm') diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm index 970df5ef20..ea3f46435f 100644 --- a/gnu/packages/gnome.scm +++ b/gnu/packages/gnome.scm @@ -393,6 +393,20 @@ (define-public gnome-icon-theme "Icons for the GNOME desktop.") (license license:lgpl3))) ; or Creative Commons BY-SA 3.0 +;; gnome-icon-theme was renamed to adwaita-icon-theme after version 3.12.0. +(define-public adwaita-icon-theme + (package (inherit gnome-icon-theme) + (name "adwaita-icon-theme") + (version "3.16.2") + (source (origin + (method url-fetch) + (uri (string-append "mirror://gnome/sources/" name "/" + (version-major+minor version) "/" + name "-" version ".tar.xz")) + (sha256 + (base32 + "1hmlw7kvhr7c2asc5y77adpymi9ka17gaf76zz835nwwffnn4rlw")))))) + (define-public shared-mime-info (package (name "shared-mime-info") -- cgit v1.2.3 From 281c21567de4687ba55451cadca07e1743546e2b Mon Sep 17 00:00:00 2001 From: 宋文武 Date: Sat, 23 May 2015 11:31:30 +0800 Subject: gnu: librsvg: Update to 2.40.9. * gnu/packages/gnome.scm (librsvg): Update to 2.40.9. --- gnu/packages/gnome.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gnu/packages/gnome.scm') diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm index ea3f46435f..3c7aab4874 100644 --- a/gnu/packages/gnome.scm +++ b/gnu/packages/gnome.scm @@ -647,7 +647,7 @@ (define-public libgsf (define-public librsvg (package (name "librsvg") - (version "2.40.6") + (version "2.40.9") (source (origin (method url-fetch) (uri (string-append "mirror://gnome/sources/" name "/" @@ -655,7 +655,7 @@ (define-public librsvg name "-" version ".tar.xz")) (sha256 (base32 - "01jgb11779080b80k2ncrhdphgillqrrnszal6vh8yv787r4kwwa")))) + "0fplymmqqr28y24vcnb01szn62pfbqhk8p1ngns54x9m6mflr5hk")))) (build-system gnu-build-system) (arguments `(#:phases -- cgit v1.2.3