summary refs log tree commit diff
path: root/pkgs/tools/networking/whois
diff options
context:
space:
mode:
authorWill Dietz <w@wdtz.org>2018-01-09 08:10:41 -0600
committerWill Dietz <w@wdtz.org>2018-01-09 08:41:40 -0600
commit90c67ea36a8396ed39bd3595d57431f6894d9745 (patch)
tree710441cfebec77596efee6f2c4ae3bc6e8b9ed4a /pkgs/tools/networking/whois
parent73a01aa028c4ee4ae1220b68e45d697fa86ee9c8 (diff)
downloadnixpkgs-90c67ea36a8396ed39bd3595d57431f6894d9745.tar
nixpkgs-90c67ea36a8396ed39bd3595d57431f6894d9745.tar.gz
nixpkgs-90c67ea36a8396ed39bd3595d57431f6894d9745.tar.bz2
nixpkgs-90c67ea36a8396ed39bd3595d57431f6894d9745.tar.lz
nixpkgs-90c67ea36a8396ed39bd3595d57431f6894d9745.tar.xz
nixpkgs-90c67ea36a8396ed39bd3595d57431f6894d9745.tar.zst
nixpkgs-90c67ea36a8396ed39bd3595d57431f6894d9745.zip
whois: 5.2.18 -> 5.2.20
Diffstat (limited to 'pkgs/tools/networking/whois')
-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 ed8f2eebc75..d73c5624aec 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.18";
+  version = "5.2.20";
   name = "whois-${version}";
 
   src = fetchFromGitHub {
     owner = "rfc1036";
     repo = "whois";
     rev = "v${version}";
-    sha256 = "0jzyq1rj6balc6a28swzgspv55xhkc75dw6wsn159in4ap61bzmi";
+    sha256 = "1aamasivfnghr9my1j6c1rf0dfal45axjcjf3mpv0g942bkxqp5b";
   };
 
   buildInputs = [ perl gettext ];