ddns-updater: 2.7.0 -> 2.9.0

This commit is contained in:
Darragh Elliott
2025-01-11 12:15:08 +00:00
parent 037cf30dc6
commit 99f659a0a5
+4 -8
View File
@@ -7,23 +7,23 @@
}:
buildGoModule rec {
pname = "ddns-updater";
version = "2.7.0";
version = "2.9.0";
src = fetchFromGitHub {
owner = "qdm12";
repo = "ddns-updater";
rev = "v${version}";
hash = "sha256-U8Vw7dsj/efqvpooT3QQjNp41AuGYJ/Gz/pA8Em3diE=";
hash = "sha256-Vvk3owtSpwstmC5UaVyUEY+FW25KA+nYp2dOqiP4HTs=";
};
vendorHash = "sha256-M9Al3zl2Ltv4yWdyRB3+9zpTr3foliu5WweImHltz3M=";
vendorHash = "sha256-RKaUgE/cdzattMWMxiJ5fIXjx3IKE+On6dT/P6y4wqU=";
ldflags = [
"-s"
"-w"
];
subPackages = [ "cmd/updater" ];
subPackages = [ "cmd/ddns-updater" ];
passthru = {
tests = {
@@ -32,10 +32,6 @@ buildGoModule rec {
updateScript = nix-update-script { };
};
postInstall = ''
mv $out/bin/updater $out/bin/ddns-updater
'';
meta = with lib; {
description = "Container to update DNS records periodically with WebUI for many DNS providers";
homepage = "https://github.com/qdm12/ddns-updater";