dness: init at 0.5.7 (#411007)

This commit is contained in:
Sandro
2026-03-15 21:09:59 +00:00
committed by GitHub
2 changed files with 52 additions and 0 deletions
+11
View File
@@ -15504,6 +15504,17 @@
githubId = 918448;
name = "Anthony Lodi";
};
logan-barnett = {
email = "logustus+nixpkgs@gmail.com";
github = "LoganBarnett";
githubId = 27005;
keys = [
{
fingerprint = "3F29 5F7D 2427 6467 A9B2 3459 41E4 6FB1 ACEA 3EF0";
}
];
name = "Logan Barnett";
};
logger = {
name = "Ido Samuelson";
email = "ido.samuelson@gmail.com";
+41
View File
@@ -0,0 +1,41 @@
{
fetchFromGitHub,
lib,
openssl,
pkg-config,
rustPlatform,
versionCheckHook,
nix-update-script,
}:
rustPlatform.buildRustPackage (finalAttrs: {
pname = "dness";
version = "0.5.7";
src = fetchFromGitHub {
owner = "nickbabcock";
repo = "dness";
tag = "v${finalAttrs.version}";
hash = "sha256-Vty4ec6aoUh3p2b9vLkNeS5R4pJWzjwYrC5DtVVyhT8=";
};
cargoHash = "sha256-WhSeNukPjgM7Cy8LWi/s1YGa5/UxsFU1NGL7vIUlU58=";
doCheck = false; # Many tests require network access
nativeBuildInputs = [ pkg-config ];
buildInputs = [ openssl ];
doInstallCheck = true;
nativeInstallCheckInputs = [ versionCheckHook ];
passthru.updateScript = nix-update-script { };
meta = {
description = "Dynamic DNS updating tool supporting a variety of providers";
homepage = "https://github.com/nickbabcock/dness";
maintainers = with lib.maintainers; [ logan-barnett ];
mainProgram = "dness";
license = lib.licenses.mit;
};
})