94427deb9d
GitOrigin-RevId: f91ee3065de91a3531329a674a45ddcb3467a650
34 lines
946 B
Nix
34 lines
946 B
Nix
{ lib, stdenv, fetchurl, unzip, makeWrapper, jre_headless }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "maestro";
|
|
version = "1.28.0";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/mobile-dev-inc/maestro/releases/download/cli-${version}/maestro.zip";
|
|
sha256 = "15vc8w40fyzg23rj5awifxi6gpb51pbp2khamcs7dypi6263cq54";
|
|
};
|
|
|
|
dontUnpack = true;
|
|
nativeBuildInputs = [ unzip makeWrapper ];
|
|
|
|
installPhase = ''
|
|
mkdir $out
|
|
unzip $src -d $out
|
|
mv $out/maestro/* $out
|
|
rm -rf $out/maestro
|
|
'';
|
|
|
|
postFixup = ''
|
|
wrapProgram $out/bin/maestro --prefix PATH : "${lib.makeBinPath [ jre_headless ]}"
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Mobile UI Automation tool";
|
|
homepage = "https://maestro.mobile.dev/";
|
|
license = licenses.asl20;
|
|
platforms = lib.platforms.all;
|
|
changelog = "https://github.com/mobile-dev-inc/maestro/blob/main/CHANGELOG.md";
|
|
maintainers = with maintainers; [ SubhrajyotiSen ];
|
|
};
|
|
}
|