summary refs log tree commit diff
path: root/pkgs/tools/networking/inetutils
diff options
context:
space:
mode:
authorNeil Mayhew <neil@neil.mayhew.name>2017-03-06 21:05:42 -0700
committerNeil Mayhew <neil@neil.mayhew.name>2017-03-06 21:05:42 -0700
commitc78251f17c9d5f0cbebefc4ec3f337c8cec89b96 (patch)
treee06c65af2ce675e5044a47fd31b82e51e22fb76a /pkgs/tools/networking/inetutils
parent9a7bad2c178c6b4642ed50e7d10e69d03dc3e35b (diff)
downloadnixpkgs-c78251f17c9d5f0cbebefc4ec3f337c8cec89b96.tar
nixpkgs-c78251f17c9d5f0cbebefc4ec3f337c8cec89b96.tar.gz
nixpkgs-c78251f17c9d5f0cbebefc4ec3f337c8cec89b96.tar.bz2
nixpkgs-c78251f17c9d5f0cbebefc4ec3f337c8cec89b96.tar.lz
nixpkgs-c78251f17c9d5f0cbebefc4ec3f337c8cec89b96.tar.xz
nixpkgs-c78251f17c9d5f0cbebefc4ec3f337c8cec89b96.tar.zst
nixpkgs-c78251f17c9d5f0cbebefc4ec3f337c8cec89b96.zip
inetutils: Add perl to buildInputs
`whois' uses perl for various things during its build. Without it,
whois fails to build .
Diffstat (limited to 'pkgs/tools/networking/inetutils')
-rw-r--r--pkgs/tools/networking/inetutils/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/tools/networking/inetutils/default.nix b/pkgs/tools/networking/inetutils/default.nix
index a92c3432857..9ca2eab20ab 100644
--- a/pkgs/tools/networking/inetutils/default.nix
+++ b/pkgs/tools/networking/inetutils/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchurl, ncurses }:
+{ stdenv, fetchurl, ncurses, perl }:
 
 stdenv.mkDerivation rec {
   name = "inetutils-1.9.4";
@@ -8,7 +8,7 @@ stdenv.mkDerivation rec {
     sha256 = "05n65k4ixl85dc6rxc51b1b732gnmm8xnqi424dy9f1nz7ppb3xy";
   };
 
-  buildInputs = [ ncurses /* for `talk' */ ];
+  buildInputs = [ ncurses /* for `talk' */ perl /* for `whois' */ ];
 
   configureFlags = "--with-ncurses-include-dir=${ncurses.dev}/include";