about summary refs log tree commit diff
path: root/pkgs/development/web/cypress
diff options
context:
space:
mode:
authorAna Hobden <operator@hoverbear.org>2022-09-14 13:22:28 -0700
committerGitHub <noreply@github.com>2022-09-14 22:22:28 +0200
commitf8991a5057b3f2f32c8f65e5a58cf52f942a4cfa (patch)
tree526d803a4d041f78874a39cc19e98c9604810419 /pkgs/development/web/cypress
parent3e63fa279f035df1d3650aa392f3a55a374e4cb4 (diff)
cypress: 10.3.1 -> 10.8.0 (#191199)
Diffstat (limited to 'pkgs/development/web/cypress')
-rw-r--r--pkgs/development/web/cypress/default.nix5
1 files changed, 3 insertions, 2 deletions
diff --git a/pkgs/development/web/cypress/default.nix b/pkgs/development/web/cypress/default.nix
index 0b1ce3de75807..8212c9a34b922 100644
--- a/pkgs/development/web/cypress/default.nix
+++ b/pkgs/development/web/cypress/default.nix
@@ -16,11 +16,11 @@
 
 stdenv.mkDerivation rec {
   pname = "cypress";
-  version = "10.3.1";
+  version = "10.8.0";
 
   src = fetchzip {
     url = "https://cdn.cypress.io/desktop/${version}/linux-x64/cypress.zip";
-    sha256 = "sha256-LfvTnvOGFFZn7tUQ150fCO0gw7TK6JJj+Ys75VjJJ2M=";
+    sha256 = "sha256-QKzdK/3WGcNoPPgsCO08rmOFgwgYTI9yvP70HoGvojg=";
   };
 
   # don't remove runtime deps
@@ -70,6 +70,7 @@ stdenv.mkDerivation rec {
   meta = with lib; {
     description = "Fast, easy and reliable testing for anything that runs in a browser";
     homepage = "https://www.cypress.io";
+    mainProgram = "Cypress";
     sourceProvenance = with sourceTypes; [ binaryNativeCode ];
     license = licenses.mit;
     platforms = [ "x86_64-linux" ];