2019-02-03 16:33:19 +01:00
|
|
|
{ config, stdenv, lib, fetchurl, intltool, pkgconfig, python3Packages, bluez, gtk3
|
2019-08-29 03:25:04 +02:00
|
|
|
, obex_data_server, xdg_utils, dnsmasq, dhcp, libappindicator, iproute
|
2019-10-17 22:56:41 +02:00
|
|
|
, gnome3, librsvg, wrapGAppsHook, gobject-introspection, autoreconfHook
|
2019-10-03 01:47:08 +02:00
|
|
|
, networkmanager, withPulseAudio ? config.pulseaudio or stdenv.isLinux, libpulseaudio, fetchpatch }:
|
2016-02-12 20:46:28 +01:00
|
|
|
|
|
|
|
let
|
2018-08-03 15:25:19 +02:00
|
|
|
pythonPackages = python3Packages;
|
2019-08-29 03:25:04 +02:00
|
|
|
binPath = lib.makeBinPath [ xdg_utils dnsmasq dhcp iproute ];
|
2016-02-12 20:46:28 +01:00
|
|
|
|
|
|
|
in stdenv.mkDerivation rec {
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "blueman";
|
2020-05-12 17:12:19 +02:00
|
|
|
version = "2.1.3";
|
2017-05-11 14:37:00 +02:00
|
|
|
|
2010-07-06 16:54:22 +02:00
|
|
|
src = fetchurl {
|
2019-08-15 14:41:18 +02:00
|
|
|
url = "https://github.com/blueman-project/blueman/releases/download/${version}/${pname}-${version}.tar.xz";
|
2020-05-12 17:12:19 +02:00
|
|
|
sha256 = "1pngqbwapbvywhkmflapqvs0wa0af7d1a87wy56l5hg2r462xl1v";
|
2010-07-06 16:54:22 +02:00
|
|
|
};
|
|
|
|
|
2018-01-05 13:15:50 +01:00
|
|
|
nativeBuildInputs = [
|
2018-12-02 12:41:15 +01:00
|
|
|
gobject-introspection intltool pkgconfig pythonPackages.cython
|
2018-01-05 13:15:50 +01:00
|
|
|
pythonPackages.wrapPython wrapGAppsHook
|
2019-10-17 22:56:41 +02:00
|
|
|
autoreconfHook # drop when below patch is removed
|
2018-01-05 13:15:50 +01:00
|
|
|
];
|
2016-02-12 20:46:28 +01:00
|
|
|
|
2019-08-29 03:25:04 +02:00
|
|
|
buildInputs = [ bluez gtk3 pythonPackages.python librsvg
|
2019-10-01 04:55:17 +02:00
|
|
|
gnome3.adwaita-icon-theme iproute libappindicator networkmanager ]
|
2016-02-12 20:46:28 +01:00
|
|
|
++ pythonPath
|
2019-10-01 04:55:17 +02:00
|
|
|
++ lib.optional withPulseAudio libpulseaudio;
|
2016-02-12 20:46:28 +01:00
|
|
|
|
2019-09-16 05:21:36 +02:00
|
|
|
patches = [
|
|
|
|
# Don't use etc/dbus-1/system.d
|
|
|
|
(fetchpatch {
|
2019-10-17 22:56:41 +02:00
|
|
|
url = "https://github.com/blueman-project/blueman/commit/ae2be5a70cdea1d1aa0e3ab1c85c1d3a0c4affc6.patch";
|
|
|
|
sha256 = "0nb6jzlxhgjvac52cjwi0pi40b8v4h6z6pwz5vkyfmaj86spygg3";
|
|
|
|
excludes = [
|
|
|
|
"meson.build"
|
|
|
|
"Dependencies.md"
|
|
|
|
];
|
2019-09-16 05:21:36 +02:00
|
|
|
})
|
|
|
|
];
|
|
|
|
|
2016-02-12 20:46:28 +01:00
|
|
|
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
|
|
|
|
2019-08-29 03:25:04 +02:00
|
|
|
pythonPath = with pythonPackages; [ 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
|
|
|
|
2019-08-29 03:25:04 +02:00
|
|
|
configureFlags = [
|
|
|
|
"--with-systemdsystemunitdir=${placeholder "out"}/lib/systemd/system"
|
|
|
|
"--with-systemduserunitdir=${placeholder "out"}/lib/systemd/user"
|
|
|
|
(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; {
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "https://github.com/blueman-project/blueman";
|
2019-09-04 00:49:40 +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
|
|
|
};
|
|
|
|
}
|