mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-01-31 16:57:55 +00:00
27 lines
579 B
Nix
27 lines
579 B
Nix
|
{ 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 ];
|
||
|
};
|
||
|
}
|