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

52 lines
1.6 KiB
Nix
Raw Normal View History

{ stdenv, lib, fetchzip, autoPatchelfHook, xorg, gtk2, gnome2, gtk3, nss, alsa-lib, udev, unzip, wrapGAppsHook, mesa }:
2019-07-16 15:39:08 +02:00
stdenv.mkDerivation rec {
2019-07-16 15:39:08 +02:00
pname = "cypress";
2021-06-08 10:24:42 +02:00
version = "7.5.0";
2019-07-16 15:39:08 +02:00
src = fetchzip {
url = "https://cdn.cypress.io/desktop/${version}/linux-x64/cypress.zip";
2021-06-08 10:24:42 +02:00
sha256 = "07i475b17v8qazdq6qzjqsdfpvhg1b8x1p5a51hwhcxaym3p5njj";
2019-07-16 15:39:08 +02:00
};
2021-05-02 02:27:06 +02:00
passthru.updateScript = ./update.sh;
2019-07-16 15:39:08 +02:00
# don't remove runtime deps
dontPatchELF = true;
2021-04-13 01:13:20 +02:00
nativeBuildInputs = [ autoPatchelfHook wrapGAppsHook unzip ];
2019-07-16 15:39:08 +02:00
buildInputs = with xorg; [
2021-04-13 01:13:20 +02:00
libXScrnSaver libXdamage libXtst libxshmfence
2019-07-16 15:39:08 +02:00
] ++ [
nss gtk2 alsa-lib gnome2.GConf gtk3
2021-04-09 10:56:12 +02:00
mesa # for libgbm
2019-07-16 15:39:08 +02:00
];
runtimeDependencies = [ (lib.getLib udev) ];
2019-07-16 15:39:08 +02:00
installPhase = ''
2021-04-13 01:13:20 +02:00
runHook preInstall
2019-07-16 15:39:08 +02: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 20:36:51 +02: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 15:39:08 +02:00
ln -s $out/opt/cypress/Cypress $out/bin/Cypress
2021-04-13 01:13:20 +02:00
runHook postInstall
2019-07-16 15:39:08 +02:00
'';
meta = with lib; {
2019-07-16 15:39:08 +02:00
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"];
maintainers = with maintainers; [ tweber mmahut ];
};
}