summary refs log tree commit diff
path: root/pkgs/applications/office
diff options
context:
space:
mode:
authorGaraba Flórián <garaba.florian@protonmail.com>2019-12-02 12:54:19 +0100
committerGaraba Flórián <garaba.florian@protonmail.com>2019-12-02 13:06:23 +0100
commitd28fcaad9659a894878ee9405bb22acad7758b84 (patch)
tree0782eaf02ed81295abd343226d33ec7472928885 /pkgs/applications/office
parent8031617f3f97638bc8e4a0142d98b0ca2dc09ed9 (diff)
downloadnixpkgs-d28fcaad9659a894878ee9405bb22acad7758b84.tar
nixpkgs-d28fcaad9659a894878ee9405bb22acad7758b84.tar.gz
nixpkgs-d28fcaad9659a894878ee9405bb22acad7758b84.tar.bz2
nixpkgs-d28fcaad9659a894878ee9405bb22acad7758b84.tar.lz
nixpkgs-d28fcaad9659a894878ee9405bb22acad7758b84.tar.xz
nixpkgs-d28fcaad9659a894878ee9405bb22acad7758b84.tar.zst
nixpkgs-d28fcaad9659a894878ee9405bb22acad7758b84.zip
zim: Fix missing icons
Diffstat (limited to 'pkgs/applications/office')
-rw-r--r--pkgs/applications/office/zim/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/applications/office/zim/default.nix b/pkgs/applications/office/zim/default.nix
index 5afc03a3bd6..baf7741ed22 100644
--- a/pkgs/applications/office/zim/default.nix
+++ b/pkgs/applications/office/zim/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchurl, python3Packages, gtk3, gobject-introspection, wrapGAppsHook }:
+{ stdenv, fetchurl, python3Packages, gtk3, gobject-introspection, wrapGAppsHook, gnome3 }:
 
 #
 # TODO: Declare configuration options for the following optional dependencies:
@@ -16,7 +16,7 @@ python3Packages.buildPythonApplication rec {
     sha256 = "1n3gmg7g86s8iwcx0i7rvvfdfs1fzmc9awr9qzjd2rckw4bkxad1";
   };
 
-  buildInputs = [ gtk3 gobject-introspection wrapGAppsHook ];
+  buildInputs = [ gtk3 gobject-introspection wrapGAppsHook gnome3.adwaita-icon-theme ];
   propagatedBuildInputs = with python3Packages; [ pyxdg pygobject3 ];