1 { lib, stdenv, fetchurl }:
3 stdenv.mkDerivation rec {
4 pname = "htmlunit-driver-standalone";
8 url = "https://github.com/SeleniumHQ/htmlunit-driver/releases/download/${version}/htmlunit-driver-${version}-with-dependencies.jar";
9 sha256 = "1sd3cwpamcbq9pv0mvcm8x6minqrlb4i0r12q3jg91girqswm2dp";
14 installPhase = "install -D $src $out/share/lib/${pname}-${version}/${pname}-${version}.jar";
17 homepage = "https://github.com/SeleniumHQ/htmlunit-driver";
18 description = "A WebDriver server for running Selenium tests on the HtmlUnit headless browser";
19 maintainers = with maintainers; [ coconnor offline ];
20 platforms = platforms.all;
21 sourceProvenance = with sourceTypes; [ binaryBytecode ];
22 license = licenses.asl20;