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
619 B
Nix
28 lines
619 B
Nix
{
|
|
lib,
|
|
buildGoModule,
|
|
fetchFromGitHub,
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "matcha-rss-digest";
|
|
version = "0.7.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "piqoni";
|
|
repo = "matcha";
|
|
rev = "v${version}";
|
|
hash = "sha256-Zs6Och5CsqN2mpnCLgV1VkH4+CV1fklfP20A22rE5y0=";
|
|
};
|
|
|
|
vendorHash = "sha256-CURFy92K4aNF9xC8ik6RDadRAvlw8p3Xc+gWE2un6cc=";
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/piqoni/matcha";
|
|
description = "Daily digest generator from a list of RSS feeds";
|
|
license = licenses.mit;
|
|
mainProgram = "matcha";
|
|
maintainers = with maintainers; [ foo-dogsquared ];
|
|
};
|
|
}
|