mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-26 21:33:03 +03:00
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:
parent
f3beeca924
commit
614c40a1e1
@ -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 = {
|
||||
|
Loading…
Reference in New Issue
Block a user