faba-mono-icons: build GTK icon cache

This commit is contained in:
Yegor Timoshenko 2018-02-24 11:12:20 +00:00
parent ede5f2cbfa
commit c087641f64

View File

@ -1,25 +1,29 @@
{ stdenv, fetchFromGitHub, autoreconfHook, moka-icon-theme }: { stdenv, fetchFromGitHub, autoreconfHook, gtk3, moka-icon-theme }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
name = "${package-name}-${version}"; name = "${pname}-${version}";
package-name = "faba-mono-icons"; pname = "faba-mono-icons";
version = "2016-04-30"; version = "2016-04-30";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "snwh"; owner = "snwh";
repo = package-name; repo = pname;
rev = "2006c5281eb988c799068734f289a85443800cda"; rev = "2006c5281eb988c799068734f289a85443800cda";
sha256 = "0nisfl92y6hrbakp9qxi0ygayl6avkzrhwirg6854bwqjy2dvjv9"; sha256 = "0nisfl92y6hrbakp9qxi0ygayl6avkzrhwirg6854bwqjy2dvjv9";
}; };
nativeBuildInputs = [ autoreconfHook ]; nativeBuildInputs = [ autoreconfHook gtk3 moka-icon-theme ];
buildInputs = [ moka-icon-theme ]; postFixup = ''
for theme in $out/share/icons/*; do
gtk-update-icon-cache $theme
done
'';
meta = with stdenv.lib; { meta = with stdenv.lib; {
description = "The full set of Faba monochrome panel icons"; description = "The full set of Faba monochrome panel icons";
homepage = https://snwh.org/moka; homepage = https://snwh.org/moka;
license = with licenses; [ gpl3 ]; license = licenses.gpl3;
platforms = platforms.all; platforms = platforms.all;
maintainers = with maintainers; [ romildo ]; maintainers = with maintainers; [ romildo ];
}; };