Files
Dark Steveneq 646b892680
Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
push sheeet
2025-10-09 14:15:47 +02:00

35 lines
1.1 KiB
Nix

{
chromium,
testers,
chromedriver,
}:
chromium.mkDerivation (_: {
name = "chromedriver";
packageName = "chromedriver";
# Build the unstripped target, because stripping in Chromium relies on a prebuilt strip binary
# that doesn't run on NixOS, and we will strip everything ourselves later anyway.
buildTargets = [ "chromedriver.unstripped" ];
installPhase = ''
install -Dm555 $buildPath/chromedriver.unstripped $out/bin/chromedriver
'';
# Kill existing postFixup that tries to patchelf things
postFixup = null;
passthru.tests.version = testers.testVersion { package = chromedriver; };
meta = chromium.meta // {
homepage = "https://chromedriver.chromium.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.
'';
mainProgram = "chromedriver";
};
})