summary refs log tree commit diff
path: root/pkgs/tools
diff options
context:
space:
mode:
authorRyan Mulligan <ryan@ryantm.com>2018-02-27 19:02:45 -0800
committerRobin Gloster <mail@glob.in>2018-02-28 11:40:22 +0100
commitbba455e8a660e6015bec6a323a0130edc875e15f (patch)
treec3519a09fab8e97321a6a80dfe2b1828b9a26f1e /pkgs/tools
parent4c0efb17ce29d3ce390f282ad46975142eaebfdc (diff)
downloadnixlib-bba455e8a660e6015bec6a323a0130edc875e15f.tar
nixlib-bba455e8a660e6015bec6a323a0130edc875e15f.tar.gz
nixlib-bba455e8a660e6015bec6a323a0130edc875e15f.tar.bz2
nixlib-bba455e8a660e6015bec6a323a0130edc875e15f.tar.lz
nixlib-bba455e8a660e6015bec6a323a0130edc875e15f.tar.xz
nixlib-bba455e8a660e6015bec6a323a0130edc875e15f.tar.zst
nixlib-bba455e8a660e6015bec6a323a0130edc875e15f.zip
wrk: 4.0.2 -> 4.1.0
Semi-automatic update. These checks were performed:

- built on NixOS
- found 4.1.0 with grep in /nix/store/jvh5087w916pfycdqmrjlgvlzhdzj6bw-wrk-4.1.0
- found 4.1.0 in filename of file in /nix/store/jvh5087w916pfycdqmrjlgvlzhdzj6bw-wrk-4.1.0

cc "@ragge"
Diffstat (limited to 'pkgs/tools')
-rw-r--r--pkgs/tools/networking/wrk/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/tools/networking/wrk/default.nix b/pkgs/tools/networking/wrk/default.nix
index 05dcf6dc594c..5dd2f3b74fdc 100644
--- a/pkgs/tools/networking/wrk/default.nix
+++ b/pkgs/tools/networking/wrk/default.nix
@@ -2,13 +2,13 @@
 
 stdenv.mkDerivation rec {
   name = "wrk-${version}";
-  version = "4.0.2";
+  version = "4.1.0";
 
   src = fetchFromGitHub {
     owner = "wg";
     repo = "wrk";
     rev = version;
-    sha256 = "1qg6w8xz4pr227h1gxrbm6ylhqvspk95hvq2f9iakni7s56pkh1w";
+    sha256 = "0dblb3qdg8mbgb8iiks0g420pza13npbr33b2xkc5dgv7kcwmvqj";
   };
 
   buildInputs = [ luajit openssl perl ];