nixpkgs-suyu/pkgs/tools/bluetooth/blueman/default.nix

61 lines
2.1 KiB
Nix
Raw Normal View History

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
, gnome3, librsvg, wrapGAppsHook, gobject-introspection
, withNetworkManager ?
config.networking.networkmanager.enable or false, networkmanager
2019-02-03 16:33:19 +01:00
, withPulseAudio ? config.pulseaudio or stdenv.isLinux, libpulseaudio }:
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 {
pname = "blueman";
2019-08-29 03:25:04 +02:00
version = "2.1.1";
2017-05-11 14:37:00 +02:00
src = fetchurl {
url = "https://github.com/blueman-project/blueman/releases/download/${version}/${pname}-${version}.tar.xz";
2019-08-29 03:25:04 +02:00
sha256 = "1hyvc5x97j8b4kvwzh58zzlc454d0h0hk440zbg8f5as9qrv5spi";
};
nativeBuildInputs = [
gobject-introspection intltool pkgconfig pythonPackages.cython
pythonPackages.wrapPython wrapGAppsHook
];
2016-02-12 20:46:28 +01:00
2019-08-29 03:25:04 +02:00
buildInputs = [ bluez gtk3 pythonPackages.python librsvg
gnome3.adwaita-icon-theme iproute libappindicator ]
2016-02-12 20:46:28 +01:00
++ pythonPath
2019-08-29 03:25:04 +02:00
++ lib.optional withPulseAudio libpulseaudio
++ lib.optional withNetworkManager networkmanager;
2016-02-12 20:46:28 +01:00
postPatch = lib.optionalString withPulseAudio ''
sed -i 's,CDLL(",CDLL("${libpulseaudio.out}/lib/,g' blueman/main/PulseAudioUtils.py
2016-02-12 20:46:28 +01:00
'';
2019-08-29 03:25:04 +02:00
pythonPath = with pythonPackages; [ pygobject3 pycairo ];
2017-05-11 14:37:00 +02:00
propagatedUserEnvPkgs = [ obex_data_server ];
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")
];
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
'';
2016-02-12 20:46:28 +01:00
meta = with lib; {
homepage = https://github.com/blueman-project/blueman;
description = "GTK+-based Bluetooth Manager";
2016-02-12 20:46:28 +01:00
license = licenses.gpl3;
platforms = platforms.linux;
maintainers = with maintainers; [ abbradar ];
};
}