r53-ddns: init at 1.0.1

This commit is contained in:
fleaz 2022-04-26 14:06:32 +02:00
parent 59b08b732a
commit a1068d919a
No known key found for this signature in database
GPG Key ID: AED15F8FDD04D083
2 changed files with 24 additions and 0 deletions

@ -0,0 +1,22 @@
{ buildGoModule, fetchFromGitHub, lib }:
buildGoModule rec {
pname = "r53-ddns";
version = "1.0.1";
src = fetchFromGitHub {
owner = "fleaz";
repo = "r53-ddns";
rev = "v${version}";
sha256 = "sha256:1pvd1karq1p81rkq2n7mh040n29f7wb8701ax6g2sqm1yz7gxd08";
};
vendorSha256 = "sha256:1jhwds57gi548ahnh5m342csrs5rv9ysy7fqmfvg5w2s9slswq77";
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 ];
};
}

@ -4114,6 +4114,8 @@ with pkgs;
psrecord = python3Packages.callPackage ../tools/misc/psrecord {};
r53-ddns = callPackage ../applications/networking/r53-ddns { };
rare = python3Packages.callPackage ../games/rare { };
reg = callPackage ../tools/virtualization/reg { };