mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 15:03:28 +00:00
[Backport release-24.11] fx-cast-bridge: disable on aarch64-linux (#355984)
This commit is contained in:
commit
84982ed23f
@ -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";
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user