mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-01-31 04:58:01 +00:00
matcha: init at 0.6
This commit is contained in:
parent
562d3ea5fa
commit
049913a9ea
@ -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
26
pkgs/matcha/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user