From 3c29a00612087dad9466b8332c3cb0d24f05432d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Llu=C3=ADs=20Batlle=20i=20Rossell?= Date: Tue, 12 Oct 2010 18:31:11 +0000 Subject: [PATCH] Making lynx cross-build with widechar support svn path=/nixpkgs/branches/stdenv-updates/; revision=24242 --- pkgs/applications/networking/browsers/lynx/default.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pkgs/applications/networking/browsers/lynx/default.nix b/pkgs/applications/networking/browsers/lynx/default.nix index 97d28dd7e2f5..ed13fb550e5b 100644 --- a/pkgs/applications/networking/browsers/lynx/default.nix +++ b/pkgs/applications/networking/browsers/lynx/default.nix @@ -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";