luminous-ttv: init at 0.5.7 (#335481)

This commit is contained in:
Aleksana 2024-10-29 16:05:06 +08:00 committed by GitHub
commit e3976fce2f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 38 additions and 0 deletions

View File

@ -978,6 +978,12 @@
githubId = 173595;
name = "Caleb Maclennan";
};
alex = {
email = "alexander.cinnamon927@passmail.net";
github = "alexanderjkslfj";
githubId = 117545308;
name = "Alex";
};
ALEX11BR = {
email = "alexioanpopa11@gmail.com";
github = "ALEX11BR";

View File

@ -0,0 +1,32 @@
{
lib,
fetchFromGitHub,
rustPlatform,
}:
rustPlatform.buildRustPackage rec {
pname = "luminous-ttv";
version = "0.5.7";
src = fetchFromGitHub {
owner = "AlyoshaVasilieva";
repo = "luminous-ttv";
rev = "v${version}";
hash = "sha256-uaq5uiSp4lci27BxtqjdtUeiJvXhWo25lfFE+dQys6Y=";
};
cargoHash = "sha256-jbtHxarRQ8gpCBc/HZWSnkzMrlMMltpknUBV1SGVq/I=";
meta = {
description = "Rust server to retrieve and relay a playlist for Twitch livestreams/VODs";
homepage = "https://github.com/AlyoshaVasilieva/luminous-ttv";
downloadPage = "https://github.com/AlyoshaVasilieva/luminous-ttv/releases/latest";
changelog = "https://github.com/AlyoshaVasilieva/luminous-ttv/releases/tag/v${version}";
license = with lib.licenses; [
gpl3Only
mit
];
mainProgram = "luminous-ttv";
maintainers = with lib.maintainers; [ alex ];
};
}