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
28 lines
692 B
Nix
28 lines
692 B
Nix
{
|
|
lib,
|
|
fetchFromGitLab,
|
|
rustPlatform,
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage {
|
|
pname = "peertube-viewer";
|
|
version = "1.8.6";
|
|
|
|
src = fetchFromGitLab {
|
|
owner = "peertube-viewer";
|
|
repo = "peertube-viewer-rs";
|
|
rev = "v1.8.6";
|
|
hash = "sha256-ZzeWk01migUrKR7GndtNo0kLYSCUXCg0H0eCXgrDXaM==";
|
|
};
|
|
|
|
cargoHash = "sha256-Pf8Jj8XGYbNOAyYEBdAysOK92S3S7bZHerQh/2UlrbQ=";
|
|
|
|
meta = with lib; {
|
|
description = "Simple CLI browser for the peertube federated video platform";
|
|
homepage = "https://gitlab.com/peertube-viewer/peertube-viewer-rs";
|
|
license = licenses.agpl3Only;
|
|
maintainers = with maintainers; [ haruki7049 ];
|
|
mainProgram = "peertube-viewer-rs";
|
|
};
|
|
}
|