matcha: init at 0.6

This commit is contained in:
Gabriel Arazas 2023-07-21 13:37:16 +08:00
parent 562d3ea5fa
commit 049913a9ea
No known key found for this signature in database
GPG Key ID: ADE0C41DAB221FCC
2 changed files with 27 additions and 0 deletions

View File

@ -19,6 +19,7 @@ let
hush-shell = callPackage ./hush-shell.nix { };
kiwmi = callPackage ./kiwmi { };
lwp = callPackage ./lwp { };
matcha = callPackage ./matcha { };
moac = callPackage ./moac.nix { };
mopidy-beets = callPackage ./mopidy-beets.nix { };
mopidy-funkwhale = callPackage ./mopidy-funkwhale.nix { };

26
pkgs/matcha/default.nix Normal file
View File

@ -0,0 +1,26 @@
{ stdenv
, lib
, buildGoModule
, fetchFromGitHub
}:
buildGoModule rec {
pname = "matcha";
version = "0.6";
src = fetchFromGitHub {
owner = "piqoni";
repo = pname;
rev = "v${version}";
hash = "sha256-Zk85k2SllPR9zznLGevwH6hS1EEW2qEa9YXbSguRVeM=";
};
vendorHash = "sha256-Dw1z23DRG0OtakJfrgpTfd71F58KfGsqz215zK0XOdI=";
meta = with lib; {
homepage = "https://github.com/piqoni/matcha";
description = "Daily digest generator from a list of RSS feeds";
license = licenses.mit;
maintainers = with maintainers; [ foo-dogsquared ];
};
}