appium-inspector: update to electron v43

(cherry picked from commit 38f95b3781)
This commit is contained in:
tree-sapii
2026-08-22 14:10:49 -04:00
committed by Marie Ramlow
parent e756fa97aa
commit 4ddb2791fd

View File

@@ -2,7 +2,7 @@
lib,
buildNpmPackage,
copyDesktopItems,
electron_41,
electron_43,
fetchFromGitHub,
makeDesktopItem,
makeWrapper,
@@ -14,18 +14,17 @@
}:
let
electron = electron_41;
version = "2026.7.1";
electron = electron_43;
in
buildNpmPackage (finalAttrs: {
pname = "appium-inspector";
inherit version;
version = "2026.7.1";
src = fetchFromGitHub {
owner = "appium";
repo = "appium-inspector";
tag = "v${version}";
tag = "v${finalAttrs.version}";
hash = "sha256-7pxXlY/aifrg4cuGZSgxONF+RPL8P7JcZ6Gobqv2nz4=";
};
@@ -102,7 +101,7 @@ buildNpmPackage (finalAttrs: {
meta = {
description = "GUI inspector for the appium UI automation tool";
homepage = "https://appium.github.io/appium-inspector";
changelog = "https://github.com/appium/appium-inspector/releases/tag/v${version}";
changelog = "https://github.com/appium/appium-inspector/releases/tag/v${finalAttrs.src.tag}";
license = lib.licenses.asl20;
mainProgram = "appium-inspector";
maintainers = with lib.maintainers; [ marie ];