eb04659fc2
This was achieved using the following command: sd 'wrapGAppsHook\b' wrapGAppsHook3 (rg -l 'wrapGAppsHook\b') And then manually reverted the following changes: - alias in top-level.nix - function name in wrap-gapps-hook.sh - comment in postFixup of at-spi2-core - comment in gtk4 - comment in preFixup of 1password-gui/linux.nix - comment in postFixup of qgis/unwrapped-ltr.nix and qgis/unwrapped.nix - comment in postFixup of telegram-desktop - comment in postFixup of fwupd - buildCommand of mongodb-compass - postFixup of xflux-gui - comment in a patch in kdePackages.kde-gtk-config and plasma5Packages.kde-gtk-config - description of programs.sway.wrapperFeatures.gtk NixOS option (manual rebuild)
98 lines
2.6 KiB
Nix
98 lines
2.6 KiB
Nix
{ alsa-lib
|
|
, autoPatchelfHook
|
|
, callPackage
|
|
, fetchzip
|
|
, gtk2
|
|
, gtk3
|
|
, lib
|
|
, mesa
|
|
, nss
|
|
, stdenv
|
|
, udev
|
|
, unzip
|
|
, wrapGAppsHook3
|
|
, xorg
|
|
}:
|
|
|
|
let
|
|
availableBinaries = {
|
|
x86_64-linux = {
|
|
platform = "linux-x64";
|
|
checksum = "sha256-9o0nprGcJhudS1LNm+T7Vf0Dwd1RBauYKI+w1FBQ3ZM=";
|
|
};
|
|
aarch64-linux = {
|
|
platform = "linux-arm64";
|
|
checksum = "sha256-aW3cUZqAdiOLzOC9BQM/bTkDVyw24Dx9nBSXgbiKe4c=";
|
|
};
|
|
};
|
|
inherit (stdenv.hostPlatform) system;
|
|
binary = availableBinaries.${system} or (throw "cypress: No binaries available for system ${system}");
|
|
inherit (binary) platform checksum;
|
|
in stdenv.mkDerivation rec {
|
|
pname = "cypress";
|
|
version = "13.2.0";
|
|
|
|
src = fetchzip {
|
|
url = "https://cdn.cypress.io/desktop/${version}/${platform}/cypress.zip";
|
|
sha256 = checksum;
|
|
};
|
|
|
|
# don't remove runtime deps
|
|
dontPatchELF = true;
|
|
|
|
nativeBuildInputs = [ autoPatchelfHook wrapGAppsHook3 unzip ];
|
|
|
|
buildInputs = with xorg; [
|
|
libXScrnSaver
|
|
libXdamage
|
|
libXtst
|
|
libxshmfence
|
|
] ++ [
|
|
nss
|
|
gtk2
|
|
alsa-lib
|
|
gtk3
|
|
mesa # for libgbm
|
|
];
|
|
|
|
runtimeDependencies = [ (lib.getLib udev) ];
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
|
|
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
|
|
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
|
|
ln -s $out/opt/cypress/Cypress $out/bin/Cypress
|
|
|
|
runHook postInstall
|
|
'';
|
|
|
|
passthru = {
|
|
updateScript = ./update.sh;
|
|
|
|
tests = {
|
|
# We used to have a test here, but was removed because
|
|
# - it broke, and ofborg didn't fail https://github.com/NixOS/ofborg/issues/629
|
|
# - it had a large footprint in the repo; prefer RFC 92 or an ugly FOD fetcher?
|
|
# - the author switched away from cypress.
|
|
# To provide a test once more, you may find useful information in
|
|
# https://github.com/NixOS/nixpkgs/pull/223903
|
|
};
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "Fast, easy and reliable testing for anything that runs in a browser";
|
|
homepage = "https://www.cypress.io";
|
|
mainProgram = "Cypress";
|
|
sourceProvenance = with sourceTypes; [ binaryNativeCode ];
|
|
license = licenses.mit;
|
|
platforms = lib.attrNames availableBinaries;
|
|
maintainers = with maintainers; [ tweber mmahut Crafter ];
|
|
};
|
|
}
|