pantheon.wingpanel-indicator-bluetooth: 7.0.1 -> 8.0.0

https://github.com/elementary/wingpanel-indicator-bluetooth/compare/7.0.1...8.0.0
This commit is contained in:
Bobby Rong 2024-08-23 21:33:00 +08:00
parent 1ff7e28086
commit 1ec06b188f
No known key found for this signature in database

View File

@ -4,7 +4,6 @@
, nix-update-script
, pkg-config
, meson
, python3
, ninja
, vala
, gtk3
@ -18,13 +17,13 @@
stdenv.mkDerivation rec {
pname = "wingpanel-indicator-bluetooth";
version = "7.0.1";
version = "8.0.0";
src = fetchFromGitHub {
owner = "elementary";
repo = pname;
rev = version;
sha256 = "sha256-VLW3r5X0AWhNRQpajYmCNMIl/UvZCWz14gpxZLlLJdQ=";
sha256 = "sha256-N0ehiK8sYAZ/3Lu2u7dut7ZflroFptALFCxjbI0++BA=";
};
nativeBuildInputs = [
@ -33,7 +32,6 @@ stdenv.mkDerivation rec {
meson
ninja
pkg-config
python3
vala
];
@ -46,11 +44,6 @@ stdenv.mkDerivation rec {
wingpanel
];
postPatch = ''
chmod +x meson/post_install.py
patchShebangs meson/post_install.py
'';
passthru = {
updateScript = nix-update-script { };
};