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
39 lines
1.2 KiB
Nix
39 lines
1.2 KiB
Nix
{
|
|
lib,
|
|
rustPlatform,
|
|
fetchFromGitLab,
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "fcast-client";
|
|
version = "0.1.0-unstable-2024-05-23";
|
|
|
|
src = fetchFromGitLab {
|
|
domain = "gitlab.futo.org";
|
|
owner = "videostreaming";
|
|
repo = "fcast";
|
|
rev = "cc07f95d2315406fcacf67cb3abb98efff5df5d9";
|
|
hash = "sha256-vsD4xgrC5KbnZT6hPX3fi3M/CH39LtoRfa6nYD0iFew=";
|
|
};
|
|
|
|
sourceRoot = "${src.name}/clients/terminal";
|
|
|
|
cargoHash = "sha256-yzsAe+fr1yX8RBJPtXSr/R7W0iJpeF3JW3E4ius+8nU=";
|
|
|
|
meta = {
|
|
description = "FCast Client Terminal, a terminal open-source media streaming client";
|
|
homepage = "https://fcast.org/";
|
|
license = lib.licenses.gpl3;
|
|
longDescription = ''
|
|
FCast is a protocol designed for wireless streaming of audio and video
|
|
content between devices. Unlike alternative protocols like Chromecast and
|
|
AirPlay, FCast is an open source protocol that allows for custom receiver
|
|
implementations, enabling third-party developers to create their own
|
|
receiver devices or integrate the FCast protocol into their own apps.
|
|
'';
|
|
mainProgram = "fcast";
|
|
maintainers = [ ];
|
|
platforms = lib.platforms.linux;
|
|
};
|
|
}
|