2021-01-17 09:17:16 +00:00
|
|
|
{ config, stdenv, lib, fetchurl, intltool, pkg-config, python3Packages, bluez, gtk3
|
2021-03-14 16:05:16 +00:00
|
|
|
, obex_data_server, xdg-utils, dnsmasq, dhcp, libappindicator, iproute2
|
2021-05-07 21:18:14 +00:00
|
|
|
, gnome, librsvg, wrapGAppsHook, gobject-introspection, autoreconfHook
|
2019-10-02 23:47:08 +00:00
|
|
|
, networkmanager, withPulseAudio ? config.pulseaudio or stdenv.isLinux, libpulseaudio, fetchpatch }:
|
2016-02-12 19:46:28 +00:00
|
|
|
|
|
|
|
let
|
2018-08-03 13:25:19 +00:00
|
|
|
pythonPackages = python3Packages;
|
2021-03-14 16:05:16 +00:00
|
|
|
binPath = lib.makeBinPath [ xdg-utils dnsmasq dhcp iproute2 ];
|
2016-02-12 19:46:28 +00:00
|
|
|
|
|
|
|
in stdenv.mkDerivation rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "blueman";
|
2021-06-25 14:18:12 +00:00
|
|
|
version = "2.2.1";
|
2017-05-11 12:37:00 +00:00
|
|
|
|
2010-07-06 14:54:22 +00:00
|
|
|
src = fetchurl {
|
2019-08-15 12:41:18 +00:00
|
|
|
url = "https://github.com/blueman-project/blueman/releases/download/${version}/${pname}-${version}.tar.xz";
|
2021-06-25 14:18:12 +00:00
|
|
|
sha256 = "0whs1bqnn1fgzrq7y2w1d06ldvfafq6h2xzmcfncbwmyb4i0mhgw";
|
2010-07-06 14:54:22 +00:00
|
|
|
};
|
|
|
|
|
2018-01-05 12:15:50 +00:00
|
|
|
nativeBuildInputs = [
|
2021-01-17 09:17:16 +00:00
|
|
|
gobject-introspection intltool pkg-config pythonPackages.cython
|
2018-01-05 12:15:50 +00:00
|
|
|
pythonPackages.wrapPython wrapGAppsHook
|
2019-10-17 20:56:41 +00:00
|
|
|
autoreconfHook # drop when below patch is removed
|
2018-01-05 12:15:50 +00:00
|
|
|
];
|
2016-02-12 19:46:28 +00:00
|
|
|
|
2019-08-29 01:25:04 +00:00
|
|
|
buildInputs = [ bluez gtk3 pythonPackages.python librsvg
|
2021-05-07 21:18:14 +00:00
|
|
|
gnome.adwaita-icon-theme iproute2 libappindicator networkmanager ]
|
2016-02-12 19:46:28 +00:00
|
|
|
++ pythonPath
|
2019-10-01 02:55:17 +00:00
|
|
|
++ lib.optional withPulseAudio libpulseaudio;
|
2016-02-12 19:46:28 +00:00
|
|
|
|
|
|
|
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
|
|
|
|
2019-08-29 01:25:04 +00:00
|
|
|
pythonPath = with pythonPackages; [ pygobject3 pycairo ];
|
2010-07-06 14:54:22 +00:00
|
|
|
|
2017-05-11 12:37:00 +00:00
|
|
|
propagatedUserEnvPkgs = [ obex_data_server ];
|
2010-07-06 14:54:22 +00:00
|
|
|
|
2019-08-29 01:25:04 +00:00
|
|
|
configureFlags = [
|
|
|
|
"--with-systemdsystemunitdir=${placeholder "out"}/lib/systemd/system"
|
|
|
|
"--with-systemduserunitdir=${placeholder "out"}/lib/systemd/user"
|
|
|
|
(lib.enableFeature withPulseAudio "pulseaudio")
|
|
|
|
];
|
2011-05-04 14:10:17 +00:00
|
|
|
|
2017-08-14 22:11:53 +00:00
|
|
|
postFixup = ''
|
2017-04-12 15:12:23 +00:00
|
|
|
makeWrapperArgs="--prefix PATH ':' ${binPath}"
|
2017-08-14 22:11:53 +00:00
|
|
|
# This mimics ../../../development/interpreters/python/wrap.sh
|
|
|
|
wrapPythonProgramsIn "$out/bin" "$out $pythonPath"
|
|
|
|
wrapPythonProgramsIn "$out/libexec" "$out $pythonPath"
|
2016-02-12 19:46:28 +00:00
|
|
|
'';
|
2010-07-06 14:54:22 +00:00
|
|
|
|
2016-02-12 19:46:28 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://github.com/blueman-project/blueman";
|
2019-09-03 22:49:40 +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
|
|
|
};
|
|
|
|
}
|