biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / applications / networking / feedreaders / feed2imap-go / default.nix
blob806e4fc147e003ade35df33941f6c90a55a49633
1 { lib, buildGoModule, fetchFromGitHub }:
3 buildGoModule rec {
4   pname = "feed2imap-go";
5   version = "1.7.0";
7   src = fetchFromGitHub {
8     owner = "Necoro";
9     repo = "feed2imap-go";
10     rev = "v${version}";
11     sha256 = "sha256-Qtpg8DvIFkba+Do8IwemBF0rt85wS4Tq7yOLsdpQFCs=";
12   };
14   ldflags = [
15     "-s" "-w"
16     "-X github.com/Necoro/feed2imap-go/pkg/version.version=${version}"
17     "-X github.com/Necoro/feed2imap-go/pkg/version.commit=nixpkgs"
18   ];
20   vendorHash = "sha256-WFbfSzU1N2RAOMfCM7wqiAQ6R1HRaT0EfX4KYhstHJU=";
22   # The print-cache tool is not an end-user tool (https://github.com/Necoro/feed2imap-go/issues/94)
23   postInstall = ''
24     rm -f $out/bin/print-cache
25   '';
27   meta = with lib; {
28     description = "Uploads rss feeds as e-mails onto an IMAP server";
29     mainProgram = "feed2imap-go";
30     homepage = "https://github.com/Necoro/feed2imap-go";
31     license = licenses.gpl2;
32     maintainers = with maintainers; [ nomeata ];
33   };