1be0098156
GitOrigin-RevId: 667e5581d16745bcda791300ae7e2d73f49fff25
33 lines
891 B
Nix
33 lines
891 B
Nix
{ lib, stdenv, fetchurl, unzip, makeWrapper, jre_headless }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "maestro";
|
|
version = "1.11.3";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/mobile-dev-inc/maestro/releases/download/cli-${version}/maestro-${version}.zip";
|
|
sha256 = "0hjsrwp6d1k68p0qhn7v9689ihy06ssnfpi8dj61jw6r64c234m4";
|
|
};
|
|
|
|
dontUnpack = true;
|
|
nativeBuildInputs = [ unzip makeWrapper ];
|
|
|
|
installPhase = ''
|
|
mkdir $out
|
|
unzip $src -d $out
|
|
mv $out/maestro-$version/* $out
|
|
rm -rf $out/maestro-$version
|
|
'';
|
|
|
|
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;
|
|
maintainers = with maintainers; [ SubhrajyotiSen ];
|
|
};
|
|
}
|