mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-11 08:13:04 +00:00
571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
35 lines
951 B
Nix
35 lines
951 B
Nix
{ lib, buildGoModule, fetchFromGitHub }:
|
|
|
|
buildGoModule rec {
|
|
pname = "feed2imap-go";
|
|
version = "1.7.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Necoro";
|
|
repo = "feed2imap-go";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-LMtuGrNRVG3/2cgZFS7YlVmassbWDhH/nQgPh08NmpA=";
|
|
};
|
|
|
|
ldflags = [
|
|
"-s" "-w"
|
|
"-X github.com/Necoro/feed2imap-go/pkg/version.version=${version}"
|
|
"-X github.com/Necoro/feed2imap-go/pkg/version.commit=nixpkgs"
|
|
];
|
|
|
|
vendorHash = "sha256-3J9fd/ogClQ+1a2ORahwf+JwkC4b1+pR1vdVjwLutoY=";
|
|
|
|
# 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";
|
|
mainProgram = "feed2imap-go";
|
|
homepage = "https://github.com/Necoro/feed2imap-go";
|
|
license = licenses.gpl2;
|
|
maintainers = with maintainers; [ nomeata ];
|
|
};
|
|
}
|