Adding the 'gzip' dependency to lynx (important cross-building).

Otherwise, on a cross-built lynx, it cannot gunzip pages that came in gzip-compressed.
(It was calling the host gzip, a lynx dependency, before)


svn path=/nixpkgs/branches/stdenv-updates/; revision=24882
This commit is contained in:
Lluís Batlle i Rossell 2010-11-26 18:43:55 +00:00
parent f3beeca924
commit 614c40a1e1

View file

@ -1,4 +1,4 @@
{ stdenv, fetchurl, ncurses
{ stdenv, fetchurl, ncurses, gzip
, sslSupport ? true, openssl ? null
}:
@ -14,7 +14,7 @@ stdenv.mkDerivation {
configureFlags = if sslSupport then "--with-ssl" else "";
buildInputs = [ ncurses ] ++ stdenv.lib.optional sslSupport openssl;
buildInputs = [ ncurses gzip ] ++ stdenv.lib.optional sslSupport openssl;
buildNativeInputs = [ ncurses ];
crossAttrs = {