Merge pull request #222690 from nomeata/feed2imap-go

feed2imap-go: init at 1.6.0
This commit is contained in:
Sandro 2023-04-18 16:46:28 +02:00 committed by GitHub
commit cccb7c49c2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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

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