From c60c240c00a8a4e41488e9e23bca4fd8f8bba4b6 Mon Sep 17 00:00:00 2001 From: Marie Ramlow Date: Fri, 21 Mar 2025 12:02:11 +0100 Subject: [PATCH 1/2] appium-inspector: 2024.12.1 -> 2025.3.1 Diff: https://github.com/appium/appium-inspector/compare/v2024.12.1...v2025.3.1 Changelog: https://github.com/appium/appium-inspector/releases/tag/v2025.3.1 (cherry picked from commit 3edc23f6a074d4e705d9aa080dd1538e4f116b72) --- pkgs/by-name/ap/appium-inspector/package.nix | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pkgs/by-name/ap/appium-inspector/package.nix b/pkgs/by-name/ap/appium-inspector/package.nix index ac17e91e8eb67..be6e9548447bb 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_33, + electron_34, fetchFromGitHub, makeDesktopItem, makeWrapper, @@ -10,8 +10,8 @@ }: let - electron = electron_33; - version = "2024.12.1"; + electron = electron_34; + version = "2025.3.1"; in buildNpmPackage { @@ -22,10 +22,10 @@ buildNpmPackage { owner = "appium"; repo = "appium-inspector"; tag = "v${version}"; - hash = "sha256-O2rBODsZuW6M3dM1zL2TVTPxnTPaReD+yOyBLywnxIU="; + hash = "sha256-Qpk3IXoegPKLKdSSzY05cT2//45TIhyVLxESd2OeWPE="; }; - npmDepsHash = "sha256-RhRa0VgEfVv9kW+EY7yhmm6k/waYAVcvom55xUbfhDs="; + npmDepsHash = "sha256-vUqX8yUZCflfkDYssQelFfJLNhDeU3K4UJPPgvvEeaI="; npmFlags = [ "--ignore-scripts" ]; nativeBuildInputs = [ From fbfd871d9cba1bad9d15f2344f4e950b9f883368 Mon Sep 17 00:00:00 2001 From: Marie Ramlow Date: Mon, 31 Mar 2025 09:55:06 +0200 Subject: [PATCH 2/2] appium-inspector: restrict platforms to linux electron.meta.platforms evals to different values depending on which system you eval for. This confuses hydra so we stop doing that since this package only builds for linux anyways. (cherry picked from commit 3ad757495a14c036769a1c1e6fd1caeb07191726) --- pkgs/by-name/ap/appium-inspector/package.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/by-name/ap/appium-inspector/package.nix b/pkgs/by-name/ap/appium-inspector/package.nix index be6e9548447bb..ad157375150f9 100644 --- a/pkgs/by-name/ap/appium-inspector/package.nix +++ b/pkgs/by-name/ap/appium-inspector/package.nix @@ -82,6 +82,6 @@ buildNpmPackage { license = lib.licenses.asl20; mainProgram = "appium-inspector"; maintainers = with lib.maintainers; [ marie ]; - inherit (electron.meta) platforms; + platforms = lib.platforms.linux; }; }