summary refs log tree commit diff
path: root/pkgs/tools
diff options
context:
space:
mode:
authormimadrid <mimadrid@ucm.es>2017-05-07 22:26:55 +0200
committermimadrid <mimadrid@ucm.es>2017-05-07 23:11:56 +0200
commit3f7665b5a01a728b674b09f57c101f7cf62b0f26 (patch)
tree746675360e489752943c30c83cd151e77cc72a09 /pkgs/tools
parent5b065a5ba580480f9a714380d53102835743b7fb (diff)
downloadnixpkgs-3f7665b5a01a728b674b09f57c101f7cf62b0f26.tar
nixpkgs-3f7665b5a01a728b674b09f57c101f7cf62b0f26.tar.gz
nixpkgs-3f7665b5a01a728b674b09f57c101f7cf62b0f26.tar.bz2
nixpkgs-3f7665b5a01a728b674b09f57c101f7cf62b0f26.tar.lz
nixpkgs-3f7665b5a01a728b674b09f57c101f7cf62b0f26.tar.xz
nixpkgs-3f7665b5a01a728b674b09f57c101f7cf62b0f26.tar.zst
nixpkgs-3f7665b5a01a728b674b09f57c101f7cf62b0f26.zip
whois: 5.2.14 -> 5.2.15
Diffstat (limited to 'pkgs/tools')
-rw-r--r--pkgs/tools/networking/whois/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/tools/networking/whois/default.nix b/pkgs/tools/networking/whois/default.nix
index 1a8104c2ee1..ec573dadc64 100644
--- a/pkgs/tools/networking/whois/default.nix
+++ b/pkgs/tools/networking/whois/default.nix
@@ -1,14 +1,14 @@
 { stdenv, fetchFromGitHub, perl, gettext }:
 
 stdenv.mkDerivation rec {
-  version = "5.2.14";
+  version = "5.2.15";
   name = "whois-${version}";
 
   src = fetchFromGitHub {
     owner = "rfc1036";
     repo = "whois";
     rev = "v${version}";
-    sha256 = "06nx295g03z7vzrrc3mhxikpw870zvkilrlxghd2rpcbm939iin5";
+    sha256 = "0via0ls9lqmzvbbfq4zyla7si45nvkhdx0f516739f9b1jmffj04";
   };
 
   buildInputs = [ perl gettext ];