matcha: remove package

It is upstreamed to nixpkgs now.
This commit is contained in:
Gabriel Arazas 2023-09-19 13:51:38 +08:00
parent 6fc14f8358
commit 9898b0f8ac
No known key found for this signature in database
GPG Key ID: ADE0C41DAB221FCC
2 changed files with 0 additions and 27 deletions

View File

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

View File

@ -1,26 +0,0 @@
{ 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 ];
};
}