2018-08-03 06:25:19 -07:00
|
|
|
{ stdenv, lib, fetchurl, intltool, pkgconfig, python3Packages, bluez, gtk3
|
2017-05-11 05:37:00 -07:00
|
|
|
, obex_data_server, xdg_utils, libnotify, dnsmasq, dhcp
|
2018-02-24 18:23:58 -08:00
|
|
|
, hicolor-icon-theme, librsvg, wrapGAppsHook, gobjectIntrospection
|
2017-02-05 08:32:36 -08:00
|
|
|
, withPulseAudio ? true, libpulseaudio }:
|
2016-02-12 11:46:28 -08:00
|
|
|
|
|
|
|
let
|
2018-08-03 06:25:19 -07:00
|
|
|
pythonPackages = python3Packages;
|
2016-02-25 06:58:09 -08:00
|
|
|
binPath = lib.makeBinPath [ xdg_utils dnsmasq dhcp ];
|
2016-02-12 11:46:28 -08:00
|
|
|
|
|
|
|
in stdenv.mkDerivation rec {
|
|
|
|
name = "blueman-${version}";
|
2018-08-08 20:30:40 -07:00
|
|
|
version = "2.0.6";
|
2017-05-11 05:37:00 -07:00
|
|
|
|
2010-07-06 07:54:22 -07:00
|
|
|
src = fetchurl {
|
2016-02-12 11:46:28 -08:00
|
|
|
url = "https://github.com/blueman-project/blueman/releases/download/${version}/${name}.tar.xz";
|
2018-08-08 20:30:40 -07:00
|
|
|
sha256 = "0bc1lfsjkbrg9f1jnw6mx7bp04x76ljy9g0rgx7n80vaj0hpz3bj";
|
2010-07-06 07:54:22 -07:00
|
|
|
};
|
|
|
|
|
2018-01-05 04:15:50 -08:00
|
|
|
nativeBuildInputs = [
|
|
|
|
gobjectIntrospection intltool pkgconfig pythonPackages.cython
|
|
|
|
pythonPackages.wrapPython wrapGAppsHook
|
|
|
|
];
|
2016-02-12 11:46:28 -08:00
|
|
|
|
2018-02-24 18:23:58 -08:00
|
|
|
buildInputs = [ bluez gtk3 pythonPackages.python libnotify librsvg hicolor-icon-theme ]
|
2016-02-12 11:46:28 -08:00
|
|
|
++ pythonPath
|
|
|
|
++ lib.optional withPulseAudio libpulseaudio;
|
|
|
|
|
|
|
|
postPatch = lib.optionalString withPulseAudio ''
|
2016-08-22 18:36:10 -07:00
|
|
|
sed -i 's,CDLL(",CDLL("${libpulseaudio.out}/lib/,g' blueman/main/PulseAudioUtils.py
|
2016-02-12 11:46:28 -08:00
|
|
|
'';
|
2010-07-06 07:54:22 -07:00
|
|
|
|
2016-12-04 06:14:06 -08:00
|
|
|
pythonPath = with pythonPackages; [ dbus-python pygobject3 pycairo ];
|
2010-07-06 07:54:22 -07:00
|
|
|
|
2017-05-11 05:37:00 -07:00
|
|
|
propagatedUserEnvPkgs = [ obex_data_server ];
|
2010-07-06 07:54:22 -07:00
|
|
|
|
2016-02-12 11:46:28 -08:00
|
|
|
configureFlags = [ (lib.enableFeature withPulseAudio "pulseaudio") ];
|
2011-05-04 07:10:17 -07:00
|
|
|
|
2017-08-14 15:11:53 -07:00
|
|
|
postFixup = ''
|
2017-04-12 08:12:23 -07:00
|
|
|
makeWrapperArgs="--prefix PATH ':' ${binPath}"
|
2017-08-14 15:11:53 -07:00
|
|
|
# This mimics ../../../development/interpreters/python/wrap.sh
|
|
|
|
wrapPythonProgramsIn "$out/bin" "$out $pythonPath"
|
|
|
|
wrapPythonProgramsIn "$out/libexec" "$out $pythonPath"
|
2016-02-12 11:46:28 -08:00
|
|
|
'';
|
2010-07-06 07:54:22 -07:00
|
|
|
|
2016-02-12 11:46:28 -08:00
|
|
|
meta = with lib; {
|
2017-08-01 13:03:30 -07:00
|
|
|
homepage = https://github.com/blueman-project/blueman;
|
2010-07-06 07:54:22 -07:00
|
|
|
description = "GTK+-based Bluetooth Manager";
|
2016-02-12 11:46:28 -08:00
|
|
|
license = licenses.gpl3;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = with maintainers; [ abbradar ];
|
2010-07-06 07:54:22 -07:00
|
|
|
};
|
|
|
|
}
|