mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 23:36:17 +01:00
cypress: Format with nixpkgs-fmt
This commit is contained in:
parent
5bf31fbb6d
commit
9332afa7d3
1 changed files with 26 additions and 20 deletions
|
@ -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 ];
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue