2016-02-12 20:46:28 +01:00
|
|
|
{ stdenv, lib, fetchurl, intltool, pkgconfig, pythonPackages, bluez, polkit, gtk3
|
2017-05-11 14:37:00 +02:00
|
|
|
, obex_data_server, xdg_utils, libnotify, dnsmasq, dhcp
|
2018-02-25 03:23:58 +01:00
|
|
|
, hicolor-icon-theme, librsvg, wrapGAppsHook, gobjectIntrospection
|
2017-02-05 17:32:36 +01:00
|
|
|
, withPulseAudio ? true, libpulseaudio }:
|
2016-02-12 20:46:28 +01:00
|
|
|
|
|
|
|
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}";
|
2018-02-25 18:17:59 +01:00
|
|
|
version = "2.0.5";
|
2017-05-11 14:37:00 +02:00
|
|
|
|
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";
|
2018-02-25 18:17:59 +01:00
|
|
|
sha256 = "1jl83z56c01ypvv98mxn74kpbv58yrccggp1rbmnw1dnvjxvjbic";
|
2010-07-06 16:54:22 +02:00
|
|
|
};
|
|
|
|
|
2018-01-05 13:15:50 +01:00
|
|
|
nativeBuildInputs = [
|
|
|
|
gobjectIntrospection intltool pkgconfig pythonPackages.cython
|
|
|
|
pythonPackages.wrapPython wrapGAppsHook
|
|
|
|
];
|
2016-02-12 20:46:28 +01:00
|
|
|
|
2018-02-25 03:23:58 +01:00
|
|
|
buildInputs = [ bluez gtk3 pythonPackages.python libnotify librsvg hicolor-icon-theme ]
|
2016-02-12 20:46:28 +01:00
|
|
|
++ pythonPath
|
|
|
|
++ lib.optional withPulseAudio libpulseaudio;
|
|
|
|
|
|
|
|
postPatch = lib.optionalString withPulseAudio ''
|
2016-08-23 03:36:10 +02:00
|
|
|
sed -i 's,CDLL(",CDLL("${libpulseaudio.out}/lib/,g' blueman/main/PulseAudioUtils.py
|
2016-02-12 20:46:28 +01:00
|
|
|
'';
|
2010-07-06 16:54:22 +02:00
|
|
|
|
2016-12-04 15:14:06 +01:00
|
|
|
pythonPath = with pythonPackages; [ dbus-python pygobject3 pycairo ];
|
2010-07-06 16:54:22 +02:00
|
|
|
|
2017-05-11 14:37:00 +02:00
|
|
|
propagatedUserEnvPkgs = [ obex_data_server ];
|
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
|
|
|
|
2017-08-15 00:11:53 +02:00
|
|
|
postFixup = ''
|
2017-04-12 17:12:23 +02:00
|
|
|
makeWrapperArgs="--prefix PATH ':' ${binPath}"
|
2017-08-15 00:11:53 +02:00
|
|
|
# This mimics ../../../development/interpreters/python/wrap.sh
|
|
|
|
wrapPythonProgramsIn "$out/bin" "$out $pythonPath"
|
|
|
|
wrapPythonProgramsIn "$out/libexec" "$out $pythonPath"
|
2016-02-12 20:46:28 +01:00
|
|
|
'';
|
2010-07-06 16:54:22 +02:00
|
|
|
|
2016-02-12 20:46:28 +01:00
|
|
|
meta = with lib; {
|
2017-08-01 22:03:30 +02:00
|
|
|
homepage = https://github.com/blueman-project/blueman;
|
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
|
|
|
};
|
|
|
|
}
|