summary refs log tree commit diff
path: root/pkgs/tools/networking/tdns-cli
diff options
context:
space:
mode:
authorTheodore Ni <3806110+tjni@users.noreply.github.com>2022-10-06 18:09:45 -0700
committerTheodore Ni <3806110+tjni@users.noreply.github.com>2022-10-07 16:53:12 -0700
commit3c6fbacc9e43b88aa42835811b1fc310143b3282 (patch)
tree354157cda83c80c82a68f6234c77290126020d45 /pkgs/tools/networking/tdns-cli
parent052dca32e2cb8d06fbb4db11c708f7b8a3711831 (diff)
downloadnixpkgs-3c6fbacc9e43b88aa42835811b1fc310143b3282.tar
nixpkgs-3c6fbacc9e43b88aa42835811b1fc310143b3282.tar.gz
nixpkgs-3c6fbacc9e43b88aa42835811b1fc310143b3282.tar.bz2
nixpkgs-3c6fbacc9e43b88aa42835811b1fc310143b3282.tar.lz
nixpkgs-3c6fbacc9e43b88aa42835811b1fc310143b3282.tar.xz
nixpkgs-3c6fbacc9e43b88aa42835811b1fc310143b3282.tar.zst
nixpkgs-3c6fbacc9e43b88aa42835811b1fc310143b3282.zip
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.
Diffstat (limited to 'pkgs/tools/networking/tdns-cli')
-rw-r--r--pkgs/tools/networking/tdns-cli/default.nix8
1 files 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";