nixpkgs/pkgs/applications/networking/r53-ddns/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

24 lines
587 B
Nix
Raw Normal View History

2022-04-26 12:06:32 +00:00
{ buildGoModule, fetchFromGitHub, lib }:
buildGoModule rec {
pname = "r53-ddns";
2022-08-01 20:12:08 +00:00
version = "1.1.0";
2022-04-26 12:06:32 +00:00
src = fetchFromGitHub {
owner = "fleaz";
repo = "r53-ddns";
rev = "v${version}";
2022-08-01 20:12:08 +00:00
sha256 = "sha256-KJAPhSGaC3upWLfo2eeSD3Vit9Blmbol7s8y3f849N4=";
2022-04-26 12:06:32 +00:00
};
vendorHash = "sha256-KkyMd94cejWkgg/RJudy1lm/M3lsEJXFGqVTzGIX3qM=";
2022-04-26 12:06:32 +00:00
meta = with lib; {
license = licenses.mit;
homepage = "https://github.com/fleaz/r53-ddns";
description = "A DIY DynDNS tool based on Route53";
maintainers = with maintainers; [ fleaz ];
2023-11-27 01:17:53 +00:00
mainProgram = "r53-ddns";
2022-04-26 12:06:32 +00:00
};
}