blueman: 2.2.5 -> 2.3

Removed libappindicator dependency, which according to their changelog
has been replaced with a "DBus StatusNotifierItem"
This commit is contained in:
Benno Zeeman 2022-07-05 16:54:44 +02:00
parent 0cd5eefaec
commit a711154889
No known key found for this signature in database
GPG Key ID: CE68D4EF5C7BE5B0

View File

@ -9,11 +9,11 @@ let
in stdenv.mkDerivation rec {
pname = "blueman";
version = "2.2.5";
version = "2.3";
src = fetchurl {
url = "https://github.com/blueman-project/blueman/releases/download/${version}/${pname}-${version}.tar.xz";
sha256 = "sha256-yfPAqU3HyAvTIwS7Jf3tIU/jC3AY6e9Gsvy9HYA8fHw=";
sha256 = "sha256-M7pgl9M08XmJwIlPeCRrXgHTFJn5CoZOuTtc5WJv2uo=";
};
nativeBuildInputs = [
@ -23,7 +23,7 @@ in stdenv.mkDerivation rec {
];
buildInputs = [ bluez gtk3 pythonPackages.python librsvg
gnome.adwaita-icon-theme iproute2 libappindicator networkmanager ]
gnome.adwaita-icon-theme iproute2 networkmanager ]
++ pythonPath
++ lib.optional withPulseAudio libpulseaudio;