reddit-tui: init at 0.3.4 (#397162)

This commit is contained in:
Aleksana
2025-04-19 22:57:40 +08:00
committed by GitHub
2 changed files with 40 additions and 0 deletions
+6
View File
@@ -13445,6 +13445,12 @@
githubId = 632767;
name = "Guillaume Maudoux";
};
LazilyStableProton = {
email = "LazilyStable@proton.me";
github = "LazyStability";
githubId = 120277625;
name = "LazilyStableProton";
};
lblasc = {
email = "lblasc@znode.net";
github = "lblasc";
+34
View File
@@ -0,0 +1,34 @@
{
buildGoModule,
fetchFromGitHub,
lib,
nix-update-script,
callPackage,
}:
buildGoModule (finalAttrs: {
pname = "reddit-tui";
version = "0.3.4";
src = fetchFromGitHub {
owner = "tonymajestro";
repo = "reddit-tui";
tag = "v${finalAttrs.version}";
hash = "sha256-FlGprSbt1/jTRe2p/aXt5f5aZAxnQlb6M70wvUdE9qk=";
};
vendorHash = "sha256-H2ukIIi30b8kGOjESXJGv/VW5pPgfxG2c3H6S4jRAA4=";
doCheck = false;
passthru.updateScript = nix-update-script { };
meta = {
changelog = "https://github.com/tonymajestro/reddit-tui/releases/tag/${finalAttrs.src.tag}";
homepage = "https://github.com/tonymajestro/reddit-tui";
description = "Terminal UI for reddit";
longDescription = ''
Due to suspected throttling by reddit, it might be necessary to use a [redlib backend](https://github.com/redlib-org/redlib) to enable this package to work.
See [the Docs](https://github.com/tonymajestro/reddit-tui#configuration-files) on how to do that.
'';
license = lib.licenses.mit;
maintainers = [ lib.maintainers.LazilyStableProton ];
mainProgram = "reddittui";
};
})