nixpkgs/pkgs/by-name/se/selenium-manager/package.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

41 lines
974 B
Nix
Raw Normal View History

{ lib
2024-03-17 14:00:55 +00:00
, stdenv
, fetchFromGitHub
, rustPlatform
2024-03-17 14:00:55 +00:00
, darwin
}:
rustPlatform.buildRustPackage rec {
pname = "selenium-manager";
version = "4.22.0";
src = fetchFromGitHub {
owner = "SeleniumHQ";
repo = "selenium";
rev = "selenium-${version}";
hash = "sha256-qBuZgI5SSBwxbSBrAT0W/HzzV2JmPL00hPJ6s57QTeg=";
};
sourceRoot = "${src.name}/rust";
cargoHash = "sha256-1CPUOAfBfUeZt5S8t5SM3oyrNwXKHplhHG5idVy4YrE=";
2024-03-17 14:00:55 +00:00
buildInputs = lib.optionals stdenv.isDarwin [
darwin.apple_sdk.frameworks.SystemConfiguration
];
# TODO: enable tests
# The test suite depends on a number of browsers and network requests,
# check the Gentoo package for inspiration
doCheck = false;
meta = with lib; {
description = "Browser automation framework and ecosystem";
homepage = "https://github.com/SeleniumHQ/selenium";
license = licenses.asl20;
maintainers = [ ];
mainProgram = "selenium-manager";
platforms = platforms.all;
};
}