40 lines
828 B
Nix
40 lines
828 B
Nix
|
{
|
||
|
lib,
|
||
|
stdenv,
|
||
|
fetchzip,
|
||
|
firefox-bin,
|
||
|
suffix,
|
||
|
revision,
|
||
|
system,
|
||
|
throwSystem,
|
||
|
}:
|
||
|
let
|
||
|
suffix' =
|
||
|
if lib.hasPrefix "linux" suffix then "ubuntu-22.04" + (lib.removePrefix "linux" suffix) else suffix;
|
||
|
in
|
||
|
stdenv.mkDerivation {
|
||
|
name = "playwright-firefox";
|
||
|
src = fetchzip {
|
||
|
url = "https://playwright.azureedge.net/builds/firefox/${revision}/firefox-${suffix'}.zip";
|
||
|
hash =
|
||
|
{
|
||
|
x86_64-linux = "sha256-Hd9LlSRLW51gDoFyszqvg46Q/sMizLRsVKAN9atbwsw=";
|
||
|
aarch64-linux = "sha256-SEXH3gLOfNjOcnNWQjQ5gaaow47veVs0BoTYSgXw+24=";
|
||
|
}
|
||
|
.${system} or throwSystem;
|
||
|
};
|
||
|
|
||
|
inherit (firefox-bin.unwrapped)
|
||
|
nativeBuildInputs
|
||
|
buildInputs
|
||
|
runtimeDependencies
|
||
|
appendRunpaths
|
||
|
patchelfFlags
|
||
|
;
|
||
|
|
||
|
buildPhase = ''
|
||
|
mkdir -p $out/firefox
|
||
|
cp -R . $out/firefox
|
||
|
'';
|
||
|
}
|