mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 08:23:09 +00:00
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;
|
||||
buildNativeInputs = [ ncurses ];
|
||||
|
||||
crossAttrs = {
|
||||
configureFlags = "--enable-widec" +
|
||||
(if sslSupport then " --with-ssl" else "");
|
||||
};
|
||||
|
||||
meta = {
|
||||
homepage = http://lynx.isc.org/;
|
||||
description = "A text-mode web browser";
|
||||
|
Loading…
Reference in New Issue
Block a user