2021-07-15 09:42:21 +01:00
|
|
|
{ alsa-lib
|
|
|
|
, autoPatchelfHook
|
|
|
|
, callPackage
|
|
|
|
, fetchzip
|
|
|
|
, gtk2
|
|
|
|
, gtk3
|
|
|
|
, lib
|
|
|
|
, mesa
|
|
|
|
, nss
|
|
|
|
, stdenv
|
|
|
|
, udev
|
|
|
|
, unzip
|
|
|
|
, wrapGAppsHook
|
|
|
|
, xorg
|
2021-06-30 18:54:23 +01:00
|
|
|
}:
|
2019-07-16 14:39:08 +01:00
|
|
|
|
2020-06-07 22:11:08 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2019-07-16 14:39:08 +01:00
|
|
|
pname = "cypress";
|
2022-06-17 04:20:54 +01:00
|
|
|
version = "10.0.3";
|
2019-07-16 14:39:08 +01:00
|
|
|
|
|
|
|
src = fetchzip {
|
|
|
|
url = "https://cdn.cypress.io/desktop/${version}/linux-x64/cypress.zip";
|
2022-06-17 04:20:54 +01:00
|
|
|
sha256 = "0lz9rf58dzn18yxs337sw3fia0xif039dmlmslxhlhn48g9yj67z";
|
2019-07-16 14:39:08 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
# don't remove runtime deps
|
|
|
|
dontPatchELF = true;
|
|
|
|
|
2021-04-13 00:13:20 +01:00
|
|
|
nativeBuildInputs = [ autoPatchelfHook wrapGAppsHook unzip ];
|
2019-07-16 14:39:08 +01:00
|
|
|
|
|
|
|
buildInputs = with xorg; [
|
2021-07-15 09:42:21 +01:00
|
|
|
libXScrnSaver
|
|
|
|
libXdamage
|
|
|
|
libXtst
|
|
|
|
libxshmfence
|
2019-07-16 14:39:08 +01:00
|
|
|
] ++ [
|
2021-07-15 09:42:21 +01:00
|
|
|
nss
|
|
|
|
gtk2
|
|
|
|
alsa-lib
|
|
|
|
gtk3
|
2021-04-09 09:56:12 +01:00
|
|
|
mesa # for libgbm
|
2019-07-16 14:39:08 +01:00
|
|
|
];
|
|
|
|
|
2020-08-12 19:29:37 +01:00
|
|
|
runtimeDependencies = [ (lib.getLib udev) ];
|
2019-07-16 14:39:08 +01:00
|
|
|
|
|
|
|
installPhase = ''
|
2021-04-13 00:13:20 +01:00
|
|
|
runHook preInstall
|
|
|
|
|
2019-07-16 14:39:08 +01:00
|
|
|
mkdir -p $out/bin $out/opt/cypress
|
|
|
|
cp -vr * $out/opt/cypress/
|
|
|
|
# Let's create the file binary_state ourselves to make the npm package happy on initial verification.
|
2019-09-29 04:52:17 +01:00
|
|
|
# Cypress now verifies version by reading bin/resources/app/package.json
|
|
|
|
mkdir -p $out/bin/resources/app
|
2019-10-26 19:36:51 +01:00
|
|
|
printf '{"version":"%b"}' $version > $out/bin/resources/app/package.json
|
2019-09-29 04:52:17 +01:00
|
|
|
# Cypress now looks for binary_state.json in bin
|
2020-02-11 23:32:43 +00:00
|
|
|
echo '{"verified": true}' > $out/binary_state.json
|
2019-07-16 14:39:08 +01:00
|
|
|
ln -s $out/opt/cypress/Cypress $out/bin/Cypress
|
2021-04-13 00:13:20 +01:00
|
|
|
|
|
|
|
runHook postInstall
|
2019-07-16 14:39:08 +01:00
|
|
|
'';
|
|
|
|
|
2021-06-30 18:54:23 +01:00
|
|
|
passthru = {
|
|
|
|
updateScript = ./update.sh;
|
|
|
|
|
|
|
|
tests = {
|
2021-07-15 09:42:21 +01:00
|
|
|
example = callPackage ./cypress-example-kitchensink { };
|
2021-06-30 18:54:23 +01:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2019-07-16 14:39:08 +01:00
|
|
|
description = "Fast, easy and reliable testing for anything that runs in a browser";
|
|
|
|
homepage = "https://www.cypress.io";
|
2022-06-10 00:42:40 +01:00
|
|
|
sourceProvenance = with sourceTypes; [ binaryNativeCode ];
|
2019-07-16 14:39:08 +01:00
|
|
|
license = licenses.mit;
|
2021-07-15 09:42:21 +01:00
|
|
|
platforms = [ "x86_64-linux" ];
|
2019-07-16 14:39:08 +01:00
|
|
|
maintainers = with maintainers; [ tweber mmahut ];
|
|
|
|
};
|
|
|
|
}
|