depot/third_party/nixpkgs/pkgs/by-name/re/reader/package.nix
Luke Granger-Brown f92e137cfb
Some checks failed
/ combine-systems (push) Blocked by required conditions
/ build (x86_64-linux) (push) Failing after 11m44s
/ build (aarch64-linux) (push) Failing after 11m50s
/ build (push) Failing after 16m42s
Merge commit '1e2ed035f4bebc9adad02b365508ad96f7df87c1' into HEAD
2025-03-02 02:23:32 +00:00

30 lines
745 B
Nix

{
lib,
fetchFromGitHub,
buildGoModule,
}:
let
self = buildGoModule {
pname = "reader";
version = "0.4.7";
src = fetchFromGitHub {
owner = "mrusme";
repo = "reader";
tag = "v${self.version}";
hash = "sha256-Xg6ndfxKOfiIz654HcnhdvBGydOSSODBp8LnYxmqb4o=";
};
vendorHash = "sha256-dr/y4BBBe5K9U24ikLzYA+B2mzTGpFuFqoj5OLXtUG4=";
meta = {
description = "Lightweight tool offering better readability of web pages on the CLI";
homepage = "https://github.com/mrusme/reader";
changelog = "https://github.com/mrusme/reader/releases";
license = lib.licenses.gpl3Plus;
maintainers = with lib.maintainers; [ theobori ];
mainProgram = "reader";
};
};
in
self