lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

blueman: fix networking, settings

+5 -5
+4 -4
pkgs/tools/bluetooth/blueman/default.nix
··· 1 1 { stdenv, lib, fetchurl, intltool, pkgconfig, pythonPackages, bluez, polkit, gtk3 2 - , obex_data_server, xdg_utils, libnotify, dconf 2 + , obex_data_server, xdg_utils, libnotify, dconf, gsettings_desktop_schemas, dnsmasq, dhcp 3 3 , withPulseAudio ? true, libpulseaudio }: 4 4 5 5 let 6 - binPath = lib.makeBinPath [ xdg_utils ]; 6 + binPath = lib.makeBinPath [ xdg_utils dnsmasq dhcp ]; 7 7 8 8 in stdenv.mkDerivation rec { 9 9 name = "blueman-${version}"; ··· 16 16 17 17 nativeBuildInputs = [ intltool pkgconfig pythonPackages.wrapPython pythonPackages.cython ]; 18 18 19 - buildInputs = [ bluez gtk3 pythonPackages.python libnotify dconf ] 19 + buildInputs = [ bluez gtk3 pythonPackages.python libnotify dconf gsettings_desktop_schemas ] 20 20 ++ pythonPath 21 21 ++ lib.optional withPulseAudio libpulseaudio; 22 22 ··· 26 26 27 27 pythonPath = with pythonPackages; [ dbus pygobject3 ]; 28 28 29 - propagatedUserEnvPkgs = [ obex_data_server ]; 29 + propagatedUserEnvPkgs = [ obex_data_server dconf ]; 30 30 31 31 configureFlags = [ (lib.enableFeature withPulseAudio "pulseaudio") ]; 32 32
+1 -1
pkgs/top-level/all-packages.nix
··· 1031 1031 bittornado = callPackage ../tools/networking/p2p/bit-tornado { }; 1032 1032 1033 1033 blueman = callPackage ../tools/bluetooth/blueman { 1034 - inherit (gnome3) dconf; 1034 + inherit (gnome3) dconf gsettings_desktop_schemas; 1035 1035 withPulseAudio = config.pulseaudio or true; 1036 1036 }; 1037 1037