feed2imap-go: init at 1.6.0

This commit is contained in:
Joachim Breitner 2023-03-23 10:42:09 +01:00
parent 3318f57f46
commit ecb528d663
2 changed files with 29 additions and 0 deletions

View File

@ -0,0 +1,27 @@
{ lib, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
pname = "feed2imap-go";
version = "1.6.0";
src = fetchFromGitHub {
owner = "Necoro";
repo = "feed2imap-go";
rev = "v${version}";
sha256 = "sha256-zRp/MfRtCgzYFNKoV4IWbORfCy7vaaDgmRvNQ0cICNQ=";
};
vendorHash = "sha256-py0totvLLw3kahEtdZkES1t7tZsKBAUS6IMTcn847kE=";
# The print-cache tool is not an end-user tool (https://github.com/Necoro/feed2imap-go/issues/94)
postInstall = ''
rm -f $out/bin/print-cache
'';
meta = with lib; {
description = "Uploads rss feeds as e-mails onto an IMAP server";
homepage = "https://github.com/Necoro/feed2imap-go";
license = licenses.gpl2;
maintainers = with maintainers; [ nomeata ];
};
}

View File

@ -11790,6 +11790,8 @@ with pkgs;
pythonPackages = python3Packages;
};
feed2imap-go = callPackage ../applications/networking/feedreaders/feed2imap-go { };
rsstail = callPackage ../applications/networking/feedreaders/rsstail { };
rubber = callPackage ../tools/typesetting/rubber { };