about summary refs log tree commit diff
path: root/pkgs/servers/dns
diff options
context:
space:
mode:
authorColin <colin@uninsane.org>2023-10-24 02:01:29 +0000
committerColin <colin@uninsane.org>2023-11-06 15:38:23 +0000
commit83bf3ed892ca3d97cacd5bf41b67a185622ad971 (patch)
treeab080761846665cacb70b50903f7630f5dc330ec /pkgs/servers/dns
parent5babd0d512ec88b848924e1f2a1ae5585098ad75 (diff)
downloadnixlib-83bf3ed892ca3d97cacd5bf41b67a185622ad971.tar
nixlib-83bf3ed892ca3d97cacd5bf41b67a185622ad971.tar.gz
nixlib-83bf3ed892ca3d97cacd5bf41b67a185622ad971.tar.bz2
nixlib-83bf3ed892ca3d97cacd5bf41b67a185622ad971.tar.lz
nixlib-83bf3ed892ca3d97cacd5bf41b67a185622ad971.tar.xz
nixlib-83bf3ed892ca3d97cacd5bf41b67a185622ad971.tar.zst
nixlib-83bf3ed892ca3d97cacd5bf41b67a185622ad971.zip
trust-dns: 0.23.0 -> 0.24.0
upstream is in the process of renaming to `hickory-dns`.
a consequence of this is that the main binary has been renamed from
`trust-dns` to `hickory-dns` and the repository has been moved (though
for the time being the old repo is still usable on account that it
redirects to the new one).
see: <https://bluejekyll.github.io/blog/posts/announcing-hickory-dns/>
Diffstat (limited to 'pkgs/servers/dns')
-rw-r--r--pkgs/servers/dns/trust-dns/default.nix11
1 files changed, 6 insertions, 5 deletions
diff --git a/pkgs/servers/dns/trust-dns/default.nix b/pkgs/servers/dns/trust-dns/default.nix
index 88280cf51877..03814c365d7e 100644
--- a/pkgs/servers/dns/trust-dns/default.nix
+++ b/pkgs/servers/dns/trust-dns/default.nix
@@ -7,15 +7,15 @@
 
 rustPlatform.buildRustPackage rec {
   pname = "trust-dns";
-  version = "0.23.0";
+  version = "0.24.0";
 
   src = fetchFromGitHub {
-    owner = "bluejekyll";
-    repo = "trust-dns";
+    owner = "hickory-dns";
+    repo = "hickory-dns";
     rev = "v${version}";
-    sha256 = "sha256-CfFEhZEk1Z7VG0n8EvyQwHvZIOEES5GKpm5tMeqhRVY=";
+    hash = "sha256-w87WpuFKSOdObNiqET/pp2sJql1q0+xyns8+nMPj0xE=";
   };
-  cargoHash = "sha256-jmow/jtdbuKFovXWA5xbgM67iJmkwP35hiOivIJ5JdM=";
+  cargoHash = "sha256-sLhhwSsyzdxq7V9rpD42cu76T1mt4uCOx2NAmIf5sF8=";
 
   buildInputs = [ openssl ];
   nativeBuildInputs = [ pkg-config ];
@@ -29,5 +29,6 @@ rustPlatform.buildRustPackage rec {
     maintainers = with maintainers; [ colinsane ];
     platforms = platforms.linux;
     license = with licenses; [ asl20 mit ];
+    mainProgram = "hickory-dns";
   };
 }