nixpkgs/pkgs/by-name/bl/blueman/package.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

64 lines
2.2 KiB
Nix
Raw Normal View History

{ config, stdenv, lib, fetchurl, intltool, pkg-config, python3Packages, bluez, gtk3
, obex_data_server, xdg-utils, dnsmasq, dhcpcd, iproute2
, adwaita-icon-theme, librsvg, wrapGAppsHook3, gobject-introspection
, networkmanager, withPulseAudio ? config.pulseaudio or stdenv.hostPlatform.isLinux, libpulseaudio }:
2016-02-12 19:46:28 +00:00
let
2018-08-03 13:25:19 +00:00
pythonPackages = python3Packages;
2016-02-12 19:46:28 +00:00
in stdenv.mkDerivation rec {
pname = "blueman";
2024-07-26 07:15:40 +00:00
version = "2.4.3";
2017-05-11 12:37:00 +00:00
src = fetchurl {
url = "https://github.com/blueman-project/blueman/releases/download/${version}/${pname}-${version}.tar.xz";
2024-07-26 07:15:40 +00:00
sha256 = "sha256-vfxJkJdCy3koj4oR1vZmt1wnE7kcCF5tDdMpQ0eT/oU=";
};
nativeBuildInputs = [
gobject-introspection intltool pkg-config pythonPackages.cython
pythonPackages.wrapPython wrapGAppsHook3
];
2016-02-12 19:46:28 +00:00
2019-08-29 01:25:04 +00:00
buildInputs = [ bluez gtk3 pythonPackages.python librsvg
adwaita-icon-theme networkmanager ]
2016-02-12 19:46:28 +00:00
++ pythonPath
++ lib.optional withPulseAudio libpulseaudio;
2016-02-12 19:46:28 +00:00
postPatch = lib.optionalString withPulseAudio ''
sed -i 's,CDLL(",CDLL("${libpulseaudio.out}/lib/,g' blueman/main/PulseAudioUtils.py
2016-02-12 19:46:28 +00:00
'';
2019-08-29 01:25:04 +00:00
pythonPath = with pythonPackages; [ pygobject3 pycairo ];
2017-05-11 12:37:00 +00:00
propagatedUserEnvPkgs = [ obex_data_server ];
2019-08-29 01:25:04 +00:00
configureFlags = [
"--with-systemdsystemunitdir=${placeholder "out"}/lib/systemd/system"
"--with-systemduserunitdir=${placeholder "out"}/lib/systemd/user"
# Don't check for runtime dependency `ip` during the configure
"--disable-runtime-deps-check"
2019-08-29 01:25:04 +00:00
(lib.enableFeature withPulseAudio "pulseaudio")
];
makeWrapperArgs = [
"--prefix PATH ':' ${lib.makeBinPath [ dnsmasq dhcpcd iproute2 ]}"
"--suffix PATH ':' ${lib.makeBinPath [ xdg-utils ]}"
];
2017-08-14 22:11:53 +00:00
postFixup = ''
# 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
'';
2016-02-12 19:46:28 +00:00
meta = with lib; {
homepage = "https://github.com/blueman-project/blueman";
description = "GTK-based Bluetooth Manager";
2016-02-12 19:46:28 +00:00
license = licenses.gpl3;
platforms = platforms.linux;
2023-05-15 02:36:34 +00:00
changelog = "https://github.com/blueman-project/blueman/releases/tag/${version}";
2016-02-12 19:46:28 +00:00
maintainers = with maintainers; [ abbradar ];
};
}