Making lynx cross-build with widechar support
svn path=/nixpkgs/branches/stdenv-updates/; revision=24242
This commit is contained in:
parent
18372e5a56
commit
3c29a00612
|
@ -17,6 +17,11 @@ stdenv.mkDerivation {
|
||||||
buildInputs = [ ncurses ] ++ stdenv.lib.optional sslSupport openssl;
|
buildInputs = [ ncurses ] ++ stdenv.lib.optional sslSupport openssl;
|
||||||
buildNativeInputs = [ ncurses ];
|
buildNativeInputs = [ ncurses ];
|
||||||
|
|
||||||
|
crossAttrs = {
|
||||||
|
configureFlags = "--enable-widec" +
|
||||||
|
(if sslSupport then " --with-ssl" else "");
|
||||||
|
};
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
homepage = http://lynx.isc.org/;
|
homepage = http://lynx.isc.org/;
|
||||||
description = "A text-mode web browser";
|
description = "A text-mode web browser";
|
||||||
|
|
Loading…
Reference in New Issue