summary refs log tree commit diff
path: root/pkgs/tools
diff options
context:
space:
mode:
authorNikolay Amiantov <ab@fmap.me>2016-10-14 14:34:50 +0400
committerGitHub <noreply@github.com>2016-10-14 14:34:50 +0400
commit7619bea1fe9378d395975598016fe82f75e6ef4b (patch)
tree679e713ab765ec9294081b393954f8973e4a1ae9 /pkgs/tools
parent942dbf89c6120cb5b52fb2ab456855d1fbf2994e (diff)
parent745b659481ebb24a8d08f048b10683868c51b9b9 (diff)
downloadnixlib-7619bea1fe9378d395975598016fe82f75e6ef4b.tar
nixlib-7619bea1fe9378d395975598016fe82f75e6ef4b.tar.gz
nixlib-7619bea1fe9378d395975598016fe82f75e6ef4b.tar.bz2
nixlib-7619bea1fe9378d395975598016fe82f75e6ef4b.tar.lz
nixlib-7619bea1fe9378d395975598016fe82f75e6ef4b.tar.xz
nixlib-7619bea1fe9378d395975598016fe82f75e6ef4b.tar.zst
nixlib-7619bea1fe9378d395975598016fe82f75e6ef4b.zip
Merge pull request #19544 from kamilchm/blueman
blueman: hicolor_icon_theme dependency
Diffstat (limited to 'pkgs/tools')
-rw-r--r--pkgs/tools/bluetooth/blueman/default.nix5
1 files changed, 3 insertions, 2 deletions
diff --git a/pkgs/tools/bluetooth/blueman/default.nix b/pkgs/tools/bluetooth/blueman/default.nix
index 6a668f777941..2efd4660bbcc 100644
--- a/pkgs/tools/bluetooth/blueman/default.nix
+++ b/pkgs/tools/bluetooth/blueman/default.nix
@@ -1,6 +1,6 @@
 { stdenv, lib, fetchurl, intltool, pkgconfig, pythonPackages, bluez, polkit, gtk3
 , obex_data_server, xdg_utils, libnotify, dconf, gsettings_desktop_schemas, dnsmasq, dhcp
-, withPulseAudio ? true, libpulseaudio }:
+, hicolor_icon_theme , withPulseAudio ? true, libpulseaudio }:
 
 let
   binPath = lib.makeBinPath [ xdg_utils dnsmasq dhcp ];
@@ -16,7 +16,8 @@ in stdenv.mkDerivation rec {
 
   nativeBuildInputs = [ intltool pkgconfig pythonPackages.wrapPython pythonPackages.cython ];
 
-  buildInputs = [ bluez gtk3 pythonPackages.python libnotify dconf gsettings_desktop_schemas ]
+  buildInputs = [ bluez gtk3 pythonPackages.python libnotify dconf
+                  gsettings_desktop_schemas hicolor_icon_theme ]
                 ++ pythonPath
                 ++ lib.optional withPulseAudio libpulseaudio;