about summary refs log tree commit diff
path: root/pkgs/misc/themes
diff options
context:
space:
mode:
authorJosé Romildo Malaquias <malaquias@gmail.com>2016-05-28 14:43:21 -0300
committerJosé Romildo Malaquias <malaquias@gmail.com>2016-05-28 14:43:21 -0300
commit2e0c97de6ee1370f3a02a7f0a6efcc71e6769a13 (patch)
tree320d6ed34c9de24cc2622c7197c41b0db3486334 /pkgs/misc/themes
parent113895108c2550a3cfc5e9e53cd7704927bf4b34 (diff)
downloadnixlib-2e0c97de6ee1370f3a02a7f0a6efcc71e6769a13.tar
nixlib-2e0c97de6ee1370f3a02a7f0a6efcc71e6769a13.tar.gz
nixlib-2e0c97de6ee1370f3a02a7f0a6efcc71e6769a13.tar.bz2
nixlib-2e0c97de6ee1370f3a02a7f0a6efcc71e6769a13.tar.lz
nixlib-2e0c97de6ee1370f3a02a7f0a6efcc71e6769a13.tar.xz
nixlib-2e0c97de6ee1370f3a02a7f0a6efcc71e6769a13.tar.zst
nixlib-2e0c97de6ee1370f3a02a7f0a6efcc71e6769a13.zip
mate-icon-theme: 1.6.3 -> 1.14.1
Diffstat (limited to 'pkgs/misc/themes')
-rw-r--r--pkgs/misc/themes/mate-icon-theme/default.nix22
1 files changed, 14 insertions, 8 deletions
diff --git a/pkgs/misc/themes/mate-icon-theme/default.nix b/pkgs/misc/themes/mate-icon-theme/default.nix
index 6749b5e4c392..f68c8b403eec 100644
--- a/pkgs/misc/themes/mate-icon-theme/default.nix
+++ b/pkgs/misc/themes/mate-icon-theme/default.nix
@@ -1,19 +1,25 @@
-{ stdenv, fetchurl, pkgconfig, intltool, gtk2, iconnamingutils }:
+{ stdenv, fetchurl, pkgconfig, intltool, iconnamingutils, hicolor_icon_theme }:
 
-stdenv.mkDerivation {
-  name = "mate-icon-theme-1.6.3";
+stdenv.mkDerivation rec {
+  name = "mate-icon-theme-${version}";
+  version = "${major-ver}.${minor-ver}";
+  major-ver = "1.14";
+  minor-ver = "0";
 
   src = fetchurl {
-    url = "http://pub.mate-desktop.org/releases/1.6/mate-icon-theme-1.6.3.tar.xz";
-    sha256 = "1r3qkx4k9svmxdg453r9d3hs47cgagxsngzi8rp6yry0c9bw5r5w";
+    url = "http://pub.mate-desktop.org/releases/${major-ver}/${name}.tar.xz";
+    sha256 = "1d8y4vlna8higz05mc01srrgspxmzw04vh3hyzcd9ms603njpfqm";
   };
 
-  buildInputs = [ pkgconfig intltool gtk2 iconnamingutils ];
+  nativeBuildInputs = [ pkgconfig intltool iconnamingutils ];
+
+  buildInputs = [ hicolor_icon_theme ];
 
   meta = {
     description = "Icon themes from MATE";
     homepage = "http://mate-desktop.org";
-    license = stdenv.lib.licenses.gpl2;
-    platforms = stdenv.lib.platforms.linux;
+    license = stdenv.lib.licenses.lgpl3;
+    platforms = stdenv.lib.platforms.unix;
+    maintainers = [ stdenv.lib.maintainers.romildo ];
   };
 }