biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / applications / misc / matcha-rss-digest / default.nix
blobd25824fefc15adc560afebccb67109f06e05ad36
1 { stdenv
2 , lib
3 , buildGoModule
4 , fetchFromGitHub
5 }:
7 buildGoModule rec {
8   pname = "matcha-rss-digest";
9   version = "0.6.1";
11   src = fetchFromGitHub {
12     owner = "piqoni";
13     repo = "matcha";
14     rev = "v${version}";
15     hash = "sha256-aW/a1rfq/pjRpJzoEfuj0JMnyFwQKPL1+Wxvh7wVbho=";
16   };
18   vendorHash = "sha256-bwl4/4yYm8TC3D+FgyXzhQg8SdNHyXQM9YCn8p8+DF0=";
20   meta = with lib; {
21     homepage = "https://github.com/piqoni/matcha";
22     description = "Daily digest generator from a list of RSS feeds";
23     license = licenses.mit;
24     mainProgram = "matcha";
25     maintainers = with maintainers; [ foo-dogsquared ];
26   };