summary refs log tree commit diff
path: root/pkgs/development/mobile
diff options
context:
space:
mode:
authorWael Nasreddine <wael.nasreddine@gmail.com>2022-12-16 11:42:30 -0800
committerGitHub <noreply@github.com>2022-12-16 11:42:30 -0800
commit79f210e5cdd6240ea0561a57fb6681ce8cb267b6 (patch)
treec9e77c2addef66e35df69407d1415b9160d04c34 /pkgs/development/mobile
parent0b3471bb54af6695774295ff445e2dc7930aa290 (diff)
parent49ad241e30aff3d04bbb9dd56faa0ffb3056e3dc (diff)
Merge pull request #201563 from SubhrajyotiSen/patch-2
Diffstat (limited to 'pkgs/development/mobile')
-rw-r--r--pkgs/development/mobile/maestro/default.nix10
1 files changed, 5 insertions, 5 deletions
diff --git a/pkgs/development/mobile/maestro/default.nix b/pkgs/development/mobile/maestro/default.nix
index 1c3e6f1a8f3c8..ab94b59d52b71 100644
--- a/pkgs/development/mobile/maestro/default.nix
+++ b/pkgs/development/mobile/maestro/default.nix
@@ -2,11 +2,11 @@
 
 stdenv.mkDerivation rec {
   pname = "maestro";
-  version = "1.11.3";
+  version = "1.17.2";
 
   src = fetchurl {
-    url = "https://github.com/mobile-dev-inc/maestro/releases/download/cli-${version}/maestro-${version}.zip";
-    sha256 = "0hjsrwp6d1k68p0qhn7v9689ihy06ssnfpi8dj61jw6r64c234m4";
+    url = "https://github.com/mobile-dev-inc/maestro/releases/download/cli-${version}/maestro.zip";
+    sha256 = "1lf0226gl9912qrk4s57bsncv23886b8wk7wri6icg26xp1cxa3v";
   };
 
   dontUnpack = true;
@@ -15,8 +15,8 @@ stdenv.mkDerivation rec {
   installPhase = ''
     mkdir $out
     unzip $src -d $out
-    mv $out/maestro-$version/* $out
-    rm -rf $out/maestro-$version
+    mv $out/maestro/* $out
+    rm -rf $out/maestro
   '';
 
   postFixup = ''