nixpkgs/pkgs/desktops/mate/mate-icon-theme/default.nix

30 lines
860 B
Nix
Raw Normal View History

{ 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}";
version = "1.21.0";
2013-08-27 14:01:24 +01:00
src = fetchurl {
url = "http://pub.mate-desktop.org/releases/${mate.getRelease version}/${name}.tar.xz";
sha256 = "170vir6h9sgsibd4kfq5qgz542qrw94q3qakqry77clls5wj6b62";
2013-08-27 14:01:24 +01:00
};
2016-05-28 18:43:21 +01:00
nativeBuildInputs = [ pkgconfig intltool iconnamingutils ];
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";
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
};
}