about summary refs log tree commit diff
path: root/pkgs/development/web/cypress
diff options
context:
space:
mode:
authorRobert Hensing <robert@roberthensing.nl>2021-07-15 10:42:21 +0200
committerRobert Hensing <robert@roberthensing.nl>2021-07-15 10:44:14 +0200
commit9332afa7d30192d5e05a3a435be452e34c7140cc (patch)
treeb005e29ca28a2c8f0fb9190d376b47da27f18826 /pkgs/development/web/cypress
parent5bf31fbb6dad8c474e5711b21c834a0c1b95cd42 (diff)
cypress: Format with nixpkgs-fmt
Diffstat (limited to 'pkgs/development/web/cypress')
-rw-r--r--pkgs/development/web/cypress/default.nix46
1 files changed, 26 insertions, 20 deletions
diff --git a/pkgs/development/web/cypress/default.nix b/pkgs/development/web/cypress/default.nix
index cf7d3481bf470..811a63b0cef84 100644
--- a/pkgs/development/web/cypress/default.nix
+++ b/pkgs/development/web/cypress/default.nix
@@ -1,19 +1,18 @@
-{
-  alsa-lib,
-  autoPatchelfHook,
-  callPackage,
-  fetchzip,
-  gnome2,
-  gtk2,
-  gtk3,
-  lib,
-  mesa,
-  nss,
-  stdenv,
-  udev,
-  unzip,
-  wrapGAppsHook,
-  xorg,
+{ alsa-lib
+, autoPatchelfHook
+, callPackage
+, fetchzip
+, gnome2
+, gtk2
+, gtk3
+, lib
+, mesa
+, nss
+, stdenv
+, udev
+, unzip
+, wrapGAppsHook
+, xorg
 }:
 
 stdenv.mkDerivation rec {
@@ -31,9 +30,16 @@ stdenv.mkDerivation rec {
   nativeBuildInputs = [ autoPatchelfHook wrapGAppsHook unzip ];
 
   buildInputs = with xorg; [
-    libXScrnSaver libXdamage libXtst libxshmfence
+    libXScrnSaver
+    libXdamage
+    libXtst
+    libxshmfence
   ] ++ [
-    nss gtk2 alsa-lib gnome2.GConf gtk3
+    nss
+    gtk2
+    alsa-lib
+    gnome2.GConf
+    gtk3
     mesa # for libgbm
   ];
 
@@ -59,7 +65,7 @@ stdenv.mkDerivation rec {
     updateScript = ./update.sh;
 
     tests = {
-      example = callPackage ./cypress-example-kitchensink {};
+      example = callPackage ./cypress-example-kitchensink { };
     };
   };
 
@@ -67,7 +73,7 @@ stdenv.mkDerivation rec {
     description = "Fast, easy and reliable testing for anything that runs in a browser";
     homepage = "https://www.cypress.io";
     license = licenses.mit;
-    platforms = ["x86_64-linux"];
+    platforms = [ "x86_64-linux" ];
     maintainers = with maintainers; [ tweber mmahut ];
   };
 }