3
0
Fork 0
forked from mirrors/nixpkgs
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.

23 lines
559 B
Nix
Raw Normal View History

2022-04-26 13:06:32 +01:00
{ buildGoModule, fetchFromGitHub, lib }:
buildGoModule rec {
pname = "r53-ddns";
2022-08-01 21:12:08 +01:00
version = "1.1.0";
2022-04-26 13:06:32 +01:00
src = fetchFromGitHub {
owner = "fleaz";
repo = "r53-ddns";
rev = "v${version}";
2022-08-01 21:12:08 +01:00
sha256 = "sha256-KJAPhSGaC3upWLfo2eeSD3Vit9Blmbol7s8y3f849N4=";
2022-04-26 13:06:32 +01:00
};
2022-08-01 21:12:08 +01:00
vendorSha256 = "sha256-KkyMd94cejWkgg/RJudy1lm/M3lsEJXFGqVTzGIX3qM=";
2022-04-26 13:06:32 +01: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 ];
};
}