nixpkgs/pkgs/development/web/cypress/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

79 lines
1.8 KiB
Nix
Raw Normal View History

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
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
];
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.
# 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
# Cypress now looks for binary_state.json in bin
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
};
};
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";
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 ];
};
}