52 lines
1.1 KiB
Nix
52 lines
1.1 KiB
Nix
{
|
|
stdenv,
|
|
fetchzip,
|
|
firefox-bin,
|
|
revision,
|
|
system,
|
|
throwSystem,
|
|
}:
|
|
let
|
|
download =
|
|
(import ./browser-downloads.nix {
|
|
name = "firefox";
|
|
inherit revision;
|
|
}).${system} or throwSystem;
|
|
|
|
firefox-linux = stdenv.mkDerivation {
|
|
name = "playwright-firefox";
|
|
src = fetchzip {
|
|
inherit (download) url stripRoot;
|
|
hash =
|
|
{
|
|
x86_64-linux = "sha256-ol9Ai8BpstZdfd6v1NDq66BjLTr/5THya0Fk2z1toJg=";
|
|
aarch64-linux = "sha256-G0pcHmjRj5GKsDF7iHdQyGsJCiv4gqaFv2PwGa/t8bw=";
|
|
}
|
|
.${system} or throwSystem;
|
|
};
|
|
|
|
inherit (firefox-bin.unwrapped)
|
|
nativeBuildInputs
|
|
buildInputs
|
|
runtimeDependencies
|
|
appendRunpaths
|
|
patchelfFlags
|
|
;
|
|
|
|
buildPhase = ''
|
|
mkdir -p $out/firefox
|
|
cp -R . $out/firefox
|
|
'';
|
|
};
|
|
firefox-darwin = fetchzip {
|
|
inherit (download) url stripRoot;
|
|
hash = "sha256-Opwa5SbuAaXf2A+qrldHc6BkhRaOzzl0dy7R4vodG5w=";
|
|
};
|
|
in
|
|
{
|
|
x86_64-linux = firefox-linux;
|
|
aarch64-linux = firefox-linux;
|
|
aarch64-darwin = firefox-darwin;
|
|
}
|
|
.${system} or throwSystem
|