nixpkgs/pkgs/applications/misc/matcha-rss-digest/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

28 lines
623 B
Nix
Raw Normal View History

2023-08-01 10:58:16 +02:00
{ stdenv
, lib
, buildGoModule
, fetchFromGitHub
}:
buildGoModule rec {
pname = "matcha-rss-digest";
2023-09-17 10:17:27 +02:00
version = "0.6.1";
2023-08-01 10:58:16 +02:00
src = fetchFromGitHub {
owner = "piqoni";
repo = "matcha";
rev = "v${version}";
2023-09-17 10:17:27 +02:00
hash = "sha256-aW/a1rfq/pjRpJzoEfuj0JMnyFwQKPL1+Wxvh7wVbho=";
2023-08-01 10:58:16 +02:00
};
2023-09-17 10:17:27 +02:00
vendorHash = "sha256-bwl4/4yYm8TC3D+FgyXzhQg8SdNHyXQM9YCn8p8+DF0=";
2023-08-01 10:58:16 +02:00
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 ];
};
}