nixpkgs/pkgs/by-name/ma/matcha-rss-digest/package.nix

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

27 lines
614 B
Nix
Raw Permalink Normal View History

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