arc-icon-theme: build GTK icon cache

This commit is contained in:
Yegor Timoshenko 2018-02-24 11:10:07 +00:00
parent e7fb957838
commit ed7259b781

View File

@ -1,4 +1,4 @@
{ stdenv, fetchFromGitHub, autoreconfHook, moka-icon-theme }:
{ stdenv, fetchFromGitHub, autoreconfHook, gtk3, moka-icon-theme }:
stdenv.mkDerivation rec {
name = "${package-name}-${version}";
@ -12,14 +12,14 @@ stdenv.mkDerivation rec {
sha256 = "1ch3hp08qri93510hypzz6m2x4xgg2h15wvnhjwh1x1s1b7jvxjd";
};
nativeBuildInputs = [ autoreconfHook ];
nativeBuildInputs = [ autoreconfHook gtk3 moka-icon-theme ];
buildInputs = [ moka-icon-theme ];
postFixup = "gtk-update-icon-cache $out/share/icons/Arc";
meta = with stdenv.lib; {
description = "Arc icon theme";
homepage = https://github.com/horst3180/arc-icon-theme;
license = with licenses; [ gpl3 ];
license = licenses.gpl3;
platforms = platforms.all;
maintainers = with maintainers; [ romildo ];
};