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

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

78 lines
1.7 KiB
Nix
Raw Normal View History

2021-07-15 08:42:21 +00:00
{ alsa-lib
, autoPatchelfHook
, callPackage
, fetchzip
, gtk2
, gtk3
, lib
, mesa
, nss
, stdenv
, udev
, unzip
, wrapGAppsHook
, xorg
2021-06-30 17:54:23 +00:00
}:
2019-07-16 13:39:08 +00:00
stdenv.mkDerivation rec {
2019-07-16 13:39:08 +00:00
pname = "cypress";
2022-03-12 02:00:47 +00:00
version = "9.5.1";
2019-07-16 13:39:08 +00:00
src = fetchzip {
url = "https://cdn.cypress.io/desktop/${version}/linux-x64/cypress.zip";
2022-03-12 02:00:47 +00:00
sha256 = "fG93H3ADNOu9/Dz25/7b1iNVns/WselaxDG+WmLCQkI=";
2019-07-16 13:39:08 +00:00
};
# don't remove runtime deps
dontPatchELF = true;
2021-04-12 23:13:20 +00:00
nativeBuildInputs = [ autoPatchelfHook wrapGAppsHook unzip ];
2019-07-16 13:39:08 +00:00
buildInputs = with xorg; [
2021-07-15 08:42:21 +00:00
libXScrnSaver
libXdamage
libXtst
libxshmfence
2019-07-16 13:39:08 +00:00
] ++ [
2021-07-15 08:42:21 +00:00
nss
gtk2
alsa-lib
gtk3
2021-04-09 08:56:12 +00:00
mesa # for libgbm
2019-07-16 13:39:08 +00:00
];
runtimeDependencies = [ (lib.getLib udev) ];
2019-07-16 13:39:08 +00:00
installPhase = ''
2021-04-12 23:13:20 +00:00
runHook preInstall
2019-07-16 13:39:08 +00: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 18:36:51 +00: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 13:39:08 +00:00
ln -s $out/opt/cypress/Cypress $out/bin/Cypress
2021-04-12 23:13:20 +00:00
runHook postInstall
2019-07-16 13:39:08 +00:00
'';
2021-06-30 17:54:23 +00:00
passthru = {
updateScript = ./update.sh;
tests = {
2021-07-15 08:42:21 +00:00
example = callPackage ./cypress-example-kitchensink { };
2021-06-30 17:54:23 +00:00
};
};
meta = with lib; {
2019-07-16 13:39:08 +00:00
description = "Fast, easy and reliable testing for anything that runs in a browser";
homepage = "https://www.cypress.io";
license = licenses.mit;
2021-07-15 08:42:21 +00:00
platforms = [ "x86_64-linux" ];
2019-07-16 13:39:08 +00:00
maintainers = with maintainers; [ tweber mmahut ];
};
}