mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-08-25 17:55:21 +00:00
appium-inspector: update to electron v43
(cherry picked from commit 38f95b3781)
This commit is contained in:
@@ -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 ];
|
||||
|
||||
Reference in New Issue
Block a user