mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2025-01-04 01:42:53 +03:00
blueman: 2.0.8 -> 2.1.1
This commit is contained in:
parent
79cfb44011
commit
e0850f8a94
@ -1,19 +1,21 @@
|
|||||||
{ config, stdenv, lib, fetchurl, intltool, pkgconfig, python3Packages, bluez, gtk3
|
{ config, stdenv, lib, fetchurl, intltool, pkgconfig, python3Packages, bluez, gtk3
|
||||||
, obex_data_server, xdg_utils, libnotify, dnsmasq, dhcp
|
, obex_data_server, xdg_utils, dnsmasq, dhcp, libappindicator, iproute
|
||||||
, hicolor-icon-theme, librsvg, wrapGAppsHook, gobject-introspection
|
, gnome3, librsvg, wrapGAppsHook, gobject-introspection
|
||||||
|
, withNetworkManager ?
|
||||||
|
config.networking.networkmanager.enable or false, networkmanager
|
||||||
, withPulseAudio ? config.pulseaudio or stdenv.isLinux, libpulseaudio }:
|
, withPulseAudio ? config.pulseaudio or stdenv.isLinux, libpulseaudio }:
|
||||||
|
|
||||||
let
|
let
|
||||||
pythonPackages = python3Packages;
|
pythonPackages = python3Packages;
|
||||||
binPath = lib.makeBinPath [ xdg_utils dnsmasq dhcp ];
|
binPath = lib.makeBinPath [ xdg_utils dnsmasq dhcp iproute ];
|
||||||
|
|
||||||
in stdenv.mkDerivation rec {
|
in stdenv.mkDerivation rec {
|
||||||
pname = "blueman";
|
pname = "blueman";
|
||||||
version = "2.0.8";
|
version = "2.1.1";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "https://github.com/blueman-project/blueman/releases/download/${version}/${pname}-${version}.tar.xz";
|
url = "https://github.com/blueman-project/blueman/releases/download/${version}/${pname}-${version}.tar.xz";
|
||||||
sha256 = "0kkh6jppqcn3yf70vnny1l015kxrz3dxw4g774gl02lh9ixx1bq4";
|
sha256 = "1hyvc5x97j8b4kvwzh58zzlc454d0h0hk440zbg8f5as9qrv5spi";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [
|
nativeBuildInputs = [
|
||||||
@ -21,19 +23,25 @@ in stdenv.mkDerivation rec {
|
|||||||
pythonPackages.wrapPython wrapGAppsHook
|
pythonPackages.wrapPython wrapGAppsHook
|
||||||
];
|
];
|
||||||
|
|
||||||
buildInputs = [ bluez gtk3 pythonPackages.python libnotify librsvg hicolor-icon-theme ]
|
buildInputs = [ bluez gtk3 pythonPackages.python librsvg
|
||||||
|
gnome3.adwaita-icon-theme iproute libappindicator ]
|
||||||
++ pythonPath
|
++ pythonPath
|
||||||
++ lib.optional withPulseAudio libpulseaudio;
|
++ lib.optional withPulseAudio libpulseaudio
|
||||||
|
++ lib.optional withNetworkManager networkmanager;
|
||||||
|
|
||||||
postPatch = lib.optionalString withPulseAudio ''
|
postPatch = lib.optionalString withPulseAudio ''
|
||||||
sed -i 's,CDLL(",CDLL("${libpulseaudio.out}/lib/,g' blueman/main/PulseAudioUtils.py
|
sed -i 's,CDLL(",CDLL("${libpulseaudio.out}/lib/,g' blueman/main/PulseAudioUtils.py
|
||||||
'';
|
'';
|
||||||
|
|
||||||
pythonPath = with pythonPackages; [ dbus-python pygobject3 pycairo ];
|
pythonPath = with pythonPackages; [ pygobject3 pycairo ];
|
||||||
|
|
||||||
propagatedUserEnvPkgs = [ obex_data_server ];
|
propagatedUserEnvPkgs = [ obex_data_server ];
|
||||||
|
|
||||||
configureFlags = [ (lib.enableFeature withPulseAudio "pulseaudio") ];
|
configureFlags = [
|
||||||
|
"--with-systemdsystemunitdir=${placeholder "out"}/lib/systemd/system"
|
||||||
|
"--with-systemduserunitdir=${placeholder "out"}/lib/systemd/user"
|
||||||
|
(lib.enableFeature withPulseAudio "pulseaudio")
|
||||||
|
];
|
||||||
|
|
||||||
postFixup = ''
|
postFixup = ''
|
||||||
makeWrapperArgs="--prefix PATH ':' ${binPath}"
|
makeWrapperArgs="--prefix PATH ':' ${binPath}"
|
||||||
|
Loading…
Reference in New Issue
Block a user