From 3c6fbacc9e43b88aa42835811b1fc310143b3282 Mon Sep 17 00:00:00 2001 From: Theodore Ni <3806110+tjni@users.noreply.github.com> Date: Thu, 6 Oct 2022 18:09:45 -0700 Subject: [PATCH] tdns-cli: 0.0.5 -> unstable-2021-02-19 This fixes the build on Rust 1.64 since it contains an update of socket2 to a version greater than 0.3.16. --- pkgs/tools/networking/tdns-cli/default.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/tools/networking/tdns-cli/default.nix b/pkgs/tools/networking/tdns-cli/default.nix index 10dda6568fc..006e7161b19 100644 --- a/pkgs/tools/networking/tdns-cli/default.nix +++ b/pkgs/tools/networking/tdns-cli/default.nix @@ -2,16 +2,16 @@ rustPlatform.buildRustPackage rec { pname = "tdns-cli"; - version = "0.0.5"; + version = "unstable-2021-02-19"; src = fetchFromGitHub { owner = "rotty"; repo = pname; - rev = "v${version}"; - sha256 = "0nn036in5j1h0vxkwif0lf7fn900zy4f4kxlzy6qdx3jakgmxvwh"; + rev = "9a5455fe8a52f3f14dc55ef81511b479c8cd70ea"; + hash = "sha256-BGxkqlKg81izq4eOBEZFJ/MPb3UCSOo8ZTYTjtjierk="; }; - cargoSha256 = "sha256-O4n38dla2WgZ4949Ata6AYbZF9LMnXDyuFNoXRrTN7I="; + cargoHash = "sha256-uRny+l/LaQPjF5AnbxgKFLdjuAxcez1BqsL4g54KAwU="; meta = with lib; { description = "DNS tool that aims to replace dig and nsupdate";