summary refs log tree commit diff
path: root/pkgs/data/icons/arc-icon-theme
diff options
context:
space:
mode:
authorYegor Timoshenko <yegortimoshenko@riseup.net>2018-02-24 11:10:07 +0000
committerYegor Timoshenko <yegortimoshenko@riseup.net>2018-02-24 11:10:07 +0000
commited7259b781ea365eb4366be483cf4d759c3a7904 (patch)
tree62e830b34dfa0e2ddfaa2e6a117a9275f8a590e9 /pkgs/data/icons/arc-icon-theme
parente7fb957838cdfe2d6a8fb540f3ac7d94e2f19ef3 (diff)
downloadnixpkgs-ed7259b781ea365eb4366be483cf4d759c3a7904.tar
nixpkgs-ed7259b781ea365eb4366be483cf4d759c3a7904.tar.gz
nixpkgs-ed7259b781ea365eb4366be483cf4d759c3a7904.tar.bz2
nixpkgs-ed7259b781ea365eb4366be483cf4d759c3a7904.tar.lz
nixpkgs-ed7259b781ea365eb4366be483cf4d759c3a7904.tar.xz
nixpkgs-ed7259b781ea365eb4366be483cf4d759c3a7904.tar.zst
nixpkgs-ed7259b781ea365eb4366be483cf4d759c3a7904.zip
arc-icon-theme: build GTK icon cache
Diffstat (limited to 'pkgs/data/icons/arc-icon-theme')
-rw-r--r--pkgs/data/icons/arc-icon-theme/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/data/icons/arc-icon-theme/default.nix b/pkgs/data/icons/arc-icon-theme/default.nix
index 91e379de223..84bf45a52bb 100644
--- a/pkgs/data/icons/arc-icon-theme/default.nix
+++ b/pkgs/data/icons/arc-icon-theme/default.nix
@@ -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 ];
   };