maestro: update from 1.36.0 to 1.37.9 (#335888)

This commit is contained in:
Johannes Jöns 2024-09-01 16:14:13 +00:00 committed by GitHub
commit 0a17c07274
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 14 additions and 6 deletions

View File

@ -1,16 +1,26 @@
{ lib, stdenv, fetchurl, unzip, makeWrapper, jre_headless }:
{
lib,
stdenv,
fetchurl,
unzip,
makeWrapper,
jre_headless,
}:
stdenv.mkDerivation rec {
pname = "maestro";
version = "1.36.0";
version = "1.37.9";
src = fetchurl {
url = "https://github.com/mobile-dev-inc/maestro/releases/download/cli-${version}/maestro.zip";
sha256 = "18zffmqz32dfb66yy48z3dl258rlfc8m2r4021hbrbixvk7k3qb7";
sha256 = "sha256-bWZuD2+v6molwW1ef2a3djBnVfYscBjILLGXeeSUmoU=";
};
dontUnpack = true;
nativeBuildInputs = [ unzip makeWrapper ];
nativeBuildInputs = [
unzip
makeWrapper
];
installPhase = ''
mkdir $out

View File

@ -33343,8 +33343,6 @@ with pkgs;
maestral-gui = qt6Packages.callPackage ../applications/networking/maestral-qt { };
maestro = callPackage ../development/mobile/maestro { };
myfitnesspal = with python3Packages; toPythonApplication myfitnesspal;
lemurs = callPackage ../applications/display-managers/lemurs { };