summaryrefslogtreecommitdiffstats
path: root/pkgs/applications/networking/r53-ddns/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/applications/networking/r53-ddns/default.nix')
-rw-r--r--pkgs/applications/networking/r53-ddns/default.nix22
1 files changed, 22 insertions, 0 deletions
diff --git a/pkgs/applications/networking/r53-ddns/default.nix b/pkgs/applications/networking/r53-ddns/default.nix
new file mode 100644
index 000000000000..e34d6495d9ba
--- /dev/null
+++ b/pkgs/applications/networking/r53-ddns/default.nix
@@ -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 ];
+ };
+}