2018-02-25 02:23:58 +00:00
|
|
|
{ stdenv, fetchurl, pkgconfig, intltool, iconnamingutils, librsvg, hicolor-icon-theme, gtk3, mate }:
|
2013-08-27 14:01:24 +01:00
|
|
|
|
2016-05-28 18:43:21 +01:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "mate-icon-theme-${version}";
|
2018-07-08 23:01:20 +01:00
|
|
|
version = "1.21.0";
|
2013-08-27 14:01:24 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2018-02-13 22:44:07 +00:00
|
|
|
url = "http://pub.mate-desktop.org/releases/${mate.getRelease version}/${name}.tar.xz";
|
2018-07-08 23:01:20 +01:00
|
|
|
sha256 = "170vir6h9sgsibd4kfq5qgz542qrw94q3qakqry77clls5wj6b62";
|
2013-08-27 14:01:24 +01:00
|
|
|
};
|
|
|
|
|
2016-05-28 18:43:21 +01:00
|
|
|
nativeBuildInputs = [ pkgconfig intltool iconnamingutils ];
|
|
|
|
|
2018-02-25 02:23:58 +00:00
|
|
|
buildInputs = [ librsvg hicolor-icon-theme ];
|
2018-03-21 21:01:03 +00:00
|
|
|
|
2017-08-31 17:21:02 +01:00
|
|
|
postInstall = ''
|
|
|
|
for theme in "$out"/share/icons/*; do
|
|
|
|
"${gtk3.out}/bin/gtk-update-icon-cache" "$theme"
|
|
|
|
done
|
|
|
|
'';
|
2018-03-21 21:01:03 +00:00
|
|
|
|
2013-08-27 14:01:24 +01:00
|
|
|
meta = {
|
|
|
|
description = "Icon themes from MATE";
|
2017-08-01 21:03:30 +01:00
|
|
|
homepage = http://mate-desktop.org;
|
2016-05-28 18:43:21 +01:00
|
|
|
license = stdenv.lib.licenses.lgpl3;
|
2018-03-21 21:01:03 +00:00
|
|
|
platforms = stdenv.lib.platforms.linux;
|
2016-05-28 18:43:21 +01:00
|
|
|
maintainers = [ stdenv.lib.maintainers.romildo ];
|
2013-08-27 14:01:24 +01:00
|
|
|
};
|
|
|
|
}
|