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

41 lines
1.2 KiB
Nix
Raw Normal View History

2019-07-19 07:26:13 +00:00
{ stdenv, fetchzip, autoPatchelfHook, xorg, gtk2, gnome2, gtk3, nss, alsaLib, udev, unzip, wrapGAppsHook }:
2019-07-16 13:39:08 +00:00
stdenv.mkDerivation rec{
pname = "cypress";
2019-08-22 13:02:14 +00:00
version = "3.4.1";
2019-07-16 13:39:08 +00:00
src = fetchzip {
url = "https://cdn.cypress.io/desktop/${version}/linux-x64/cypress.zip";
2019-08-22 13:02:14 +00:00
sha256 = "1gyl5c86gr5sv6z5rkg0afdxqrmsxmyrimm1p5q6jlrlyzki1bfs";
2019-07-16 13:39:08 +00:00
};
# don't remove runtime deps
dontPatchELF = true;
2019-07-19 07:26:13 +00:00
nativeBuildInputs = [ autoPatchelfHook wrapGAppsHook ];
2019-07-16 13:39:08 +00:00
buildInputs = with xorg; [
libXScrnSaver libXdamage libXtst
] ++ [
nss gtk2 alsaLib gnome2.GConf gtk3 unzip
];
runtimeDependencies = [ udev.lib ];
installPhase = ''
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.
echo '{"verified": true}' > $out/opt/cypress/binary_state.json
ln -s $out/opt/cypress/Cypress $out/bin/Cypress
'';
meta = with stdenv.lib; {
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 ];
};
}