diff options
author | Yegor Timoshenko <yegortimoshenko@riseup.net> | 2018-02-24 11:11:30 +0000 |
---|---|---|
committer | Yegor Timoshenko <yegortimoshenko@riseup.net> | 2018-02-24 11:11:30 +0000 |
commit | ede5f2cbfa8e0d341e29a457044a2871f1ad3395 (patch) | |
tree | 72e1d74e3733af4b35da598bae28865707f2e4c6 /pkgs/data/icons/faba-icon-theme | |
parent | b22c33fb94a7f5f7a12edae8d1b79679612cf039 (diff) |
faba-icon-theme: build GTK icon cache
Diffstat (limited to 'pkgs/data/icons/faba-icon-theme')
-rw-r--r-- | pkgs/data/icons/faba-icon-theme/default.nix | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/data/icons/faba-icon-theme/default.nix b/pkgs/data/icons/faba-icon-theme/default.nix index 37f46060ae319..fdad4f0f46da1 100644 --- a/pkgs/data/icons/faba-icon-theme/default.nix +++ b/pkgs/data/icons/faba-icon-theme/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchFromGitHub, autoreconfHook, elementary-icon-theme }: +{ stdenv, fetchFromGitHub, autoreconfHook, elementary-icon-theme, gtk3 }: stdenv.mkDerivation rec { name = "${package-name}-${version}"; @@ -12,14 +12,14 @@ stdenv.mkDerivation rec { sha256 = "0hif030pd4w3s851k0s65w0mf2pik10ha25ycpsv91gpbgarqcns"; }; - nativeBuildInputs = [ autoreconfHook ]; - - buildInputs = [ elementary-icon-theme ]; + nativeBuildInputs = [ autoreconfHook elementary-icon-theme gtk3 ]; postPatch = '' substituteInPlace Makefile.am --replace '$(DESTDIR)'/usr $out ''; + postFixup = "gtk-update-icon-cache $out/share/icons/Faba"; + meta = with stdenv.lib; { description = "A sexy and modern icon theme with Tango influences"; homepage = https://snwh.org/moka; |