aboutsummaryrefslogtreecommitdiff
path: root/pkgs/tools/bluetooth
diff options
context:
space:
mode:
authorAndreas Rammhold <andreas@rammhold.de>2018-01-05 13:15:50 +0100
committerRobin Gloster <mail@glob.in>2018-01-05 13:59:25 +0100
commitd99321cf68a2b200112f384f311de2c1f87d39d8 (patch)
treef570cca9a12080a0c1eacd457957e13422e27fcd /pkgs/tools/bluetooth
parentb48118189721cfb58b74fb11d8d1cdb22b355955 (diff)
blueman: add `gobjectIntrospection` as native build dependency
`gobjectIntrospection` provides a hook to fixup GI_TYPELIB_PATH. Before this change all blueman tools fail to start because they are unable to discover the Gtk3 libraries.
Diffstat (limited to 'pkgs/tools/bluetooth')
-rw-r--r--pkgs/tools/bluetooth/blueman/default.nix7
1 files changed, 5 insertions, 2 deletions
diff --git a/pkgs/tools/bluetooth/blueman/default.nix b/pkgs/tools/bluetooth/blueman/default.nix
index 9027bdf9c5f..71df4a1b5a5 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, dnsmasq, dhcp
-, hicolor_icon_theme, librsvg, wrapGAppsHook
+, hicolor_icon_theme, librsvg, wrapGAppsHook, gobjectIntrospection
, withPulseAudio ? true, libpulseaudio }:
let
@@ -15,7 +15,10 @@ in stdenv.mkDerivation rec {
sha256 = "03s305mbc57nl3sq5ywh9casz926k4aqnylgaidli8bmgz1djbg9";
};
- nativeBuildInputs = [ intltool pkgconfig pythonPackages.wrapPython pythonPackages.cython wrapGAppsHook ];
+ nativeBuildInputs = [
+ gobjectIntrospection intltool pkgconfig pythonPackages.cython
+ pythonPackages.wrapPython wrapGAppsHook
+ ];
buildInputs = [ bluez gtk3 pythonPackages.python libnotify librsvg hicolor_icon_theme ]
++ pythonPath