depot/third_party/nixpkgs/pkgs/development/tools/electron/chromedriver/generic.nix
Default email 7e47f3658e Project import generated by Copybara.
GitOrigin-RevId: 1925c603f17fc89f4c8f6bf6f631a802ad85d784
2024-09-26 11:04:55 +00:00

96 lines
2.4 KiB
Nix

{ lib
, stdenv
, fetchurl
, glib
, xorg
, nspr
, nss
, autoPatchelfHook
, unzip
}:
version: hashes:
let
pname = "electron-chromedriver";
meta = with lib; {
homepage = "https://www.electronjs.org/";
description = "WebDriver server for running Selenium tests on Chrome";
longDescription = ''
WebDriver is an open source tool for automated testing of webapps across
many browsers. It provides capabilities for navigating to web pages, user
input, JavaScript execution, and more. ChromeDriver is a standalone
server that implements the W3C WebDriver standard. This is
an unofficial build of ChromeDriver compiled by the Electronjs
project.
'';
sourceProvenance = with sourceTypes; [ binaryNativeCode ];
license = licenses.mit;
maintainers = with maintainers; [ liammurphy14 yayayayaka ];
platforms = ["x86_64-darwin" "x86_64-linux" "armv7l-linux" "aarch64-linux" "aarch64-darwin"];
mainProgram = "chromedriver";
};
fetcher = vers: tag: hash: fetchurl {
url = "https://github.com/electron/electron/releases/download/v${vers}/chromedriver-v${vers}-${tag}.zip";
sha256 = hash;
};
tags = {
x86_64-linux = "linux-x64";
aarch64-linux = "linux-arm64";
armv7l-linux = "linux-armv7l";
x86_64-darwin = "darwin-x64";
aarch64-darwin = "darwin-arm64";
};
get = as: platform: as.${platform.system} or (throw "Unsupported system: ${platform.system}");
common = platform: {
inherit pname version meta;
src = fetcher version (get tags platform) (get hashes platform);
buildInputs = [
stdenv.cc.cc.lib
glib
xorg.libxcb
nspr
nss
];
};
linux = {
nativeBuildInputs = [ autoPatchelfHook unzip ];
dontUnpack = true;
dontBuild = true;
installPhase = ''
runHook preInstall
unzip $src
install -m777 -D chromedriver $out/bin/chromedriver
runHook postInstall
'';
};
darwin = {
nativeBuildInputs = [ unzip ];
dontUnpack = true;
dontBuild = true;
# darwin distributions come with libffmpeg dependecy + icudtl.dat file
installPhase = ''
runHook preInstall
unzip $src
install -m777 -D chromedriver $out/bin/chromedriver
cp libffmpeg.dylib $out/bin/libffmpeg.dylib
cp icudtl.dat $out/bin/icudtl.dat
runHook postInstall
'';
};
in
stdenv.mkDerivation (
(common stdenv.hostPlatform) //
(if stdenv.hostPlatform.isDarwin then darwin else linux)
)