[Backport release-24.11] fx-cast-bridge: disable on aarch64-linux (#355984)

This commit is contained in:
Weijia Wang 2024-11-16 00:04:08 +01:00 committed by GitHub
commit 84982ed23f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,4 +1,12 @@
{ lib, buildNpmPackage, fetchFromGitHub, avahi-compat, nodejs_18, python3 }: {
lib,
buildNpmPackage,
fetchFromGitHub,
avahi-compat,
nodejs_18,
python3,
stdenv,
}:
buildNpmPackage rec { buildNpmPackage rec {
pname = "fx-cast-bridge"; pname = "fx-cast-bridge";
@ -48,11 +56,17 @@ buildNpmPackage rec {
runHook postInstall runHook postInstall
''; '';
meta = with lib; { meta = {
description = "Implementation of the Chrome Sender API (Chromecast) within Firefox"; description = "Implementation of the Chrome Sender API (Chromecast) within Firefox";
homepage = "https://hensm.github.io/fx_cast/"; homepage = "https://hensm.github.io/fx_cast/";
license = licenses.mit; license = lib.licenses.mit;
maintainers = [ ]; 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"; mainProgram = "fx_cast_bridge";
}; };
} }