about summary refs log tree commit diff
path: root/pkgs/tools/networking/dnsperf
diff options
context:
space:
mode:
authorVladimír Čunát <v@cunat.cz>2021-03-17 08:48:14 +0100
committerVladimír Čunát <v@cunat.cz>2021-03-17 08:48:52 +0100
commiteba81031491d3e2a66a99b23625e238636f80ddd (patch)
treeabd2a77d8e11375c2ab2b8a7d5cde087a26fe1b6 /pkgs/tools/networking/dnsperf
parente3597057e72fe32f2438b9d64b38c22fa54071a5 (diff)
dnsperf: 2.4.0 -> 2.5.0
libck closure contains quite a lot of stuff that we don't need,
but that's best left for another time and perhaps closure doesn't
matter that much for a tool like dnsperf.
Diffstat (limited to 'pkgs/tools/networking/dnsperf')
-rw-r--r--pkgs/tools/networking/dnsperf/default.nix7
1 files changed, 4 insertions, 3 deletions
diff --git a/pkgs/tools/networking/dnsperf/default.nix b/pkgs/tools/networking/dnsperf/default.nix
index e4405670363f1..671a80e57802e 100644
--- a/pkgs/tools/networking/dnsperf/default.nix
+++ b/pkgs/tools/networking/dnsperf/default.nix
@@ -1,17 +1,17 @@
 { lib, stdenv, fetchurl, fetchFromGitHub, autoreconfHook, pkg-config
-, openssl, ldns
+, openssl, ldns, libck
 }:
 
 stdenv.mkDerivation rec {
   pname = "dnsperf";
-  version = "2.4.0";
+  version = "2.5.0";
 
   # The same as the initial commit of the new GitHub repo (only readme changed).
   src = fetchFromGitHub {
     owner = "DNS-OARC";
     repo = "dnsperf";
     rev = "v${version}";
-    sha256 = "0q7zmzhhx71v41wf6rhyvpil43ch4a9sx21x47wgcg362lca3cbz";
+    sha256 = "0wcjs512in9w36hbn4mffca02cn5df3s1x7zaj02qv8na5nqq11m";
   };
 
   outputs = [ "out" "man" "doc" ];
@@ -21,6 +21,7 @@ stdenv.mkDerivation rec {
   buildInputs = [
     openssl
     ldns # optional for DDNS (but cheap anyway)
+    libck
   ];
 
   doCheck = true;