summary refs log tree commit diff
path: root/pkgs/data/icons/hicolor-icon-theme/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/data/icons/hicolor-icon-theme/default.nix')
-rw-r--r--pkgs/data/icons/hicolor-icon-theme/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/data/icons/hicolor-icon-theme/default.nix b/pkgs/data/icons/hicolor-icon-theme/default.nix
index e5a3faf7742b..03c5be143ded 100644
--- a/pkgs/data/icons/hicolor-icon-theme/default.nix
+++ b/pkgs/data/icons/hicolor-icon-theme/default.nix
@@ -1,18 +1,18 @@
 { stdenv, fetchurl }:
 
 stdenv.mkDerivation rec {
-  name = "hicolor-icon-theme-0.15";
+  name = "hicolor-icon-theme-0.17";
 
   src = fetchurl {
     url = "http://icon-theme.freedesktop.org/releases/${name}.tar.xz";
-    sha256 = "1k1kf2c5zbqh31nglc3nxs9j6wr083k9kjyql8p22ccc671mmi4w";
+    sha256 = "1n59i3al3zx6p90ff0l43gzpzmlqnzm6hf5cryxqrlbi48sq8x1i";
   };
 
   setupHook = ./setup-hook.sh;
 
-  meta = {
+  meta = with stdenv.lib; {
     description = "Default fallback theme used by implementations of the icon theme specification";
     homepage = https://icon-theme.freedesktop.org/releases/;
-    platforms = with stdenv.lib.platforms; linux ++ darwin;
+    platforms = platforms.unix;
   };
 }