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
81 lines
2.0 KiB
Nix
81 lines
2.0 KiB
Nix
{
|
|
lib,
|
|
buildNpmPackage,
|
|
fetchFromGitHub,
|
|
avahi-compat,
|
|
nodejs_22,
|
|
python3,
|
|
stdenv,
|
|
}:
|
|
|
|
buildNpmPackage rec {
|
|
pname = "fx-cast-bridge";
|
|
version = "0.3.1";
|
|
|
|
nodejs = nodejs_22;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "hensm";
|
|
repo = "fx_cast";
|
|
rev = "v${version}";
|
|
hash = "sha256-hB4NVJW2exHoKsMp0CKzHerYgj8aR77rV+ZsCoWA1Dg=";
|
|
};
|
|
|
|
sourceRoot = "${src.name}/app";
|
|
|
|
patches = [
|
|
# to support later versions of nodejs
|
|
# generated by running `npm update nan --ignore-scripts` in the ./app dir
|
|
./bump-nan.patch
|
|
];
|
|
|
|
npmDepsHash = "sha256-23EZC9v4ODu3k+O9NDVhOdGJ/FfaiTVWtTrK8liAevk=";
|
|
|
|
nativeBuildInputs = [ python3 ];
|
|
buildInputs = [ avahi-compat ];
|
|
|
|
postPatch = ''
|
|
substituteInPlace bin/lib/paths.js \
|
|
--replace-fail "../../../" "../../"
|
|
'';
|
|
|
|
dontNpmInstall = true;
|
|
installPhase = ''
|
|
runHook preInstall
|
|
|
|
mkdir -p $out/{bin,lib/mozilla/native-messaging-hosts}
|
|
|
|
substituteInPlace dist/app/fx_cast_bridge.json \
|
|
--replace-fail "$(realpath dist/app/fx_cast_bridge.sh)" "$out/bin/fx_cast_bridge"
|
|
mv dist/app/fx_cast_bridge.json $out/lib/mozilla/native-messaging-hosts
|
|
|
|
rm dist/app/fx_cast_bridge.sh
|
|
mv dist/app $out/lib/fx_cast_bridge
|
|
mv node_modules $out/lib/fx_cast_bridge/node_modules
|
|
|
|
echo "#! /bin/sh
|
|
NODE_PATH=\"$out/lib/node_modules\" \\
|
|
exec ${nodejs}/bin/node \\
|
|
$out/lib/fx_cast_bridge/src/main.js \\
|
|
--_name fx_cast_bridge \"\$@\"
|
|
" >$out/bin/fx_cast_bridge
|
|
chmod +x $out/bin/fx_cast_bridge
|
|
|
|
runHook postInstall
|
|
'';
|
|
|
|
meta = {
|
|
description = "Implementation of the Chrome Sender API (Chromecast) within Firefox";
|
|
homepage = "https://hensm.github.io/fx_cast/";
|
|
license = lib.licenses.mit;
|
|
maintainers = with lib.maintainers; [ bot-wxt1221 ];
|
|
platforms = [
|
|
"x86_64-linux"
|
|
"aarch64-darwin"
|
|
"x86_64-darwin"
|
|
]; # aarch64-linux wasn't support in upstream according to README
|
|
broken = stdenv.hostPlatform.isDarwin;
|
|
mainProgram = "fx_cast_bridge";
|
|
};
|
|
}
|