feat: add updns

This commit is contained in:
2025-04-25 22:35:42 +02:00
parent 9a5a28098c
commit c02651e65a
5 changed files with 133 additions and 3 deletions

View File

@@ -0,0 +1,23 @@
{ lib, buildGoModule, fetchgit }:
buildGoModule rec {
pname = "updns";
version = "1.0.1";
src = fetchgit {
url = "https://git.cloonar.com/Cloonar/updns.git";
rev = "100cad5acde8a174f2cc36b6af577a440c528865";
sha256 = "sha256-nQU1CCbCw/8JjMErdfasyR4jyvONuEImUiqdbVut2FA=";
};
vendorHash = "sha256-PipUC/Sks7j/p9io/eHamfkbIKWsfKIDFZun2sKrWDY=";
subPackages = [ "cmd/updns" ];
meta = with lib; {
description = "UpDNS - A simple ACME DNS Proxy";
homepage = "https://git.cloonar.com/Cloonar/updns";
license = licenses.mit; # Adjust based on your project's license
maintainers = [ ];
};
}