diff --git a/pkgs/by-name/ap/appium-inspector/package.nix b/pkgs/by-name/ap/appium-inspector/package.nix index acaa8af81337..1ce6d1c9d4c5 100644 --- a/pkgs/by-name/ap/appium-inspector/package.nix +++ b/pkgs/by-name/ap/appium-inspector/package.nix @@ -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 ];