2016-02-12 20:46:28 +01:00
|
|
|
{ stdenv, lib, fetchurl, intltool, pkgconfig, pythonPackages, bluez, polkit, gtk3
|
2016-02-25 15:58:09 +01:00
|
|
|
, obex_data_server, xdg_utils, libnotify, dconf, gsettings_desktop_schemas, dnsmasq, dhcp
|
2016-02-12 20:46:28 +01:00
|
|
|
, withPulseAudio ? true, libpulseaudio }:
|
|
|
|
|
|
|
|
let
|
2016-02-25 15:58:09 +01:00
|
|
|
binPath = lib.makeBinPath [ xdg_utils dnsmasq dhcp ];
|
2016-02-12 20:46:28 +01:00
|
|
|
|
|
|
|
in stdenv.mkDerivation rec {
|
|
|
|
name = "blueman-${version}";
|
|
|
|
version = "2.0.3";
|
2010-07-06 16:54:22 +02:00
|
|
|
|
|
|
|
src = fetchurl {
|
2016-02-12 20:46:28 +01:00
|
|
|
url = "https://github.com/blueman-project/blueman/releases/download/${version}/${name}.tar.xz";
|
|
|
|
sha256 = "09aqlk4c2qzqpmyf7b40sic7d45c1l8fyrb9f3s22b8w83j0adi4";
|
2010-07-06 16:54:22 +02:00
|
|
|
};
|
|
|
|
|
2016-02-12 20:46:28 +01:00
|
|
|
nativeBuildInputs = [ intltool pkgconfig pythonPackages.wrapPython pythonPackages.cython ];
|
|
|
|
|
2016-02-25 15:58:09 +01:00
|
|
|
buildInputs = [ bluez gtk3 pythonPackages.python libnotify dconf gsettings_desktop_schemas ]
|
2016-02-12 20:46:28 +01:00
|
|
|
++ pythonPath
|
|
|
|
++ lib.optional withPulseAudio libpulseaudio;
|
|
|
|
|
|
|
|
postPatch = lib.optionalString withPulseAudio ''
|
|
|
|
sed -i 's,CDLL(",CDLL("${libpulseaudio}/lib/,g' blueman/main/PulseAudioUtils.py
|
|
|
|
'';
|
2010-07-06 16:54:22 +02:00
|
|
|
|
2016-02-12 20:46:28 +01:00
|
|
|
pythonPath = with pythonPackages; [ dbus pygobject3 ];
|
2010-07-06 16:54:22 +02:00
|
|
|
|
2016-02-25 15:58:09 +01:00
|
|
|
propagatedUserEnvPkgs = [ obex_data_server dconf ];
|
2010-07-06 16:54:22 +02:00
|
|
|
|
2016-02-12 20:46:28 +01:00
|
|
|
configureFlags = [ (lib.enableFeature withPulseAudio "pulseaudio") ];
|
2011-05-04 16:10:17 +02:00
|
|
|
|
2016-02-12 20:46:28 +01: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 16:54:22 +02:00
|
|
|
|
2016-02-12 20:46:28 +01:00
|
|
|
meta = with lib; {
|
|
|
|
homepage = https://github.com/blueman-project;
|
2010-07-06 16:54:22 +02:00
|
|
|
description = "GTK+-based Bluetooth Manager";
|
2016-02-12 20:46:28 +01:00
|
|
|
license = licenses.gpl3;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = with maintainers; [ abbradar ];
|
2010-07-06 16:54:22 +02:00
|
|
|
};
|
|
|
|
}
|