mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-26 04:43:09 +03:00
inetutils: Add perl to buildInputs
`whois' uses perl for various things during its build. Without it, whois fails to build .
This commit is contained in:
parent
9a7bad2c17
commit
c78251f17c
@ -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";
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user