ytsub: init at 0.9.0 (#501188)

This commit is contained in:
Sandro
2026-05-07 00:24:34 +00:00
committed by GitHub
2 changed files with 38 additions and 0 deletions
+6
View File
@@ -24355,6 +24355,12 @@
githubId = 30531572;
name = "Robert James Hernandez";
};
sarowish = {
email = "berkeenercan@tutanota.com";
github = "sarowish";
githubId = 20581722;
name = "Berke Enercan";
};
sarunint = {
email = "nixpkgs@sarunint.com";
github = "sarunint";
+32
View File
@@ -0,0 +1,32 @@
{
lib,
fetchFromGitHub,
rustPlatform,
sqlite,
}:
rustPlatform.buildRustPackage (finalAttrs: {
pname = "ytsub";
version = "0.9.0";
__structuredAttrs = true;
src = fetchFromGitHub {
owner = "sarowish";
repo = "ytsub";
tag = "v${finalAttrs.version}";
hash = "sha256-6qPNSkUAj11Rut/Wx724UsFdRLwZh2Z+ZC7837CeNeQ=";
};
cargoHash = "sha256-RHOG43LTI3K0VzEpGsdSKheL1fjIZ1TyB6FCgoInUm8=";
buildInputs = [ sqlite ];
meta = {
description = "Subscriptions only TUI Youtube client";
homepage = "https://github.com/sarowish/ytsub";
changelog = "https://github.com/sarowish/ytsub/releases/tag/${finalAttrs.src.tag}";
license = lib.licenses.gpl3Only;
maintainers = with lib.maintainers; [ sarowish ];
mainProgram = "ytsub";
};
})