nixpkgs/pkgs/by-name/ma/maestro/package.nix
2024-09-01 17:37:59 +02:00

45 lines
968 B
Nix

{
lib,
stdenv,
fetchurl,
unzip,
makeWrapper,
jre_headless,
}:
stdenv.mkDerivation rec {
pname = "maestro";
version = "1.37.9";
src = fetchurl {
url = "https://github.com/mobile-dev-inc/maestro/releases/download/cli-${version}/maestro.zip";
sha256 = "sha256-bWZuD2+v6molwW1ef2a3djBnVfYscBjILLGXeeSUmoU=";
};
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 ];
};
}