2016-02-12 19:46:28 +00:00
|
|
|
{ stdenv, lib, fetchurl, intltool, pkgconfig, pythonPackages, bluez, polkit, gtk3
|
2016-02-25 14:58:09 +00:00
|
|
|
, obex_data_server, xdg_utils, libnotify, dconf, gsettings_desktop_schemas, dnsmasq, dhcp
|
2016-10-14 10:00:55 +00:00
|
|
|
, hicolor_icon_theme , withPulseAudio ? true, libpulseaudio }:
|
2016-02-12 19:46:28 +00:00
|
|
|
|
|
|
|
let
|
2016-02-25 14:58:09 +00:00
|
|
|
binPath = lib.makeBinPath [ xdg_utils dnsmasq dhcp ];
|
2016-02-12 19:46:28 +00:00
|
|
|
|
|
|
|
in stdenv.mkDerivation rec {
|
|
|
|
name = "blueman-${version}";
|
2016-04-30 00:04:09 +00:00
|
|
|
version = "2.0.4";
|
2010-07-06 14:54:22 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2016-02-12 19:46:28 +00:00
|
|
|
url = "https://github.com/blueman-project/blueman/releases/download/${version}/${name}.tar.xz";
|
2016-04-30 00:04:09 +00:00
|
|
|
sha256 = "03s305mbc57nl3sq5ywh9casz926k4aqnylgaidli8bmgz1djbg9";
|
2010-07-06 14:54:22 +00:00
|
|
|
};
|
|
|
|
|
2016-02-12 19:46:28 +00:00
|
|
|
nativeBuildInputs = [ intltool pkgconfig pythonPackages.wrapPython pythonPackages.cython ];
|
|
|
|
|
2016-10-14 10:00:55 +00:00
|
|
|
buildInputs = [ bluez gtk3 pythonPackages.python libnotify dconf
|
|
|
|
gsettings_desktop_schemas hicolor_icon_theme ]
|
2016-02-12 19:46:28 +00:00
|
|
|
++ pythonPath
|
|
|
|
++ lib.optional withPulseAudio libpulseaudio;
|
|
|
|
|
|
|
|
postPatch = lib.optionalString withPulseAudio ''
|
2016-08-23 01:36:10 +00:00
|
|
|
sed -i 's,CDLL(",CDLL("${libpulseaudio.out}/lib/,g' blueman/main/PulseAudioUtils.py
|
2016-02-12 19:46:28 +00:00
|
|
|
'';
|
2010-07-06 14:54:22 +00:00
|
|
|
|
2016-12-04 14:14:06 +00:00
|
|
|
pythonPath = with pythonPackages; [ dbus-python pygobject3 pycairo ];
|
2010-07-06 14:54:22 +00:00
|
|
|
|
2016-02-25 14:58:09 +00:00
|
|
|
propagatedUserEnvPkgs = [ obex_data_server dconf ];
|
2010-07-06 14:54:22 +00:00
|
|
|
|
2016-02-12 19:46:28 +00:00
|
|
|
configureFlags = [ (lib.enableFeature withPulseAudio "pulseaudio") ];
|
2011-05-04 14:10:17 +00:00
|
|
|
|
2016-02-12 19:46:28 +00:00
|
|
|
postFixup = ''
|
|
|
|
makeWrapperArgs="\
|
|
|
|
--prefix PATH ':' ${binPath} \
|
|
|
|
--prefix GI_TYPELIB_PATH : $GI_TYPELIB_PATH \
|
|
|
|
--prefix XDG_DATA_DIRS : $GSETTINGS_SCHEMAS_PATH \
|
|
|
|
--prefix GIO_EXTRA_MODULES : ${dconf}/lib/gio/modules"
|
|
|
|
wrapPythonPrograms
|
|
|
|
'';
|
2010-07-06 14:54:22 +00:00
|
|
|
|
2016-02-12 19:46:28 +00:00
|
|
|
meta = with lib; {
|
2016-08-13 00:18:13 +00:00
|
|
|
homepage = "https://github.com/blueman-project/blueman";
|
2010-07-06 14:54:22 +00:00
|
|
|
description = "GTK+-based Bluetooth Manager";
|
2016-02-12 19:46:28 +00:00
|
|
|
license = licenses.gpl3;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = with maintainers; [ abbradar ];
|
2010-07-06 14:54:22 +00:00
|
|
|
};
|
|
|
|
}
|