summary refs log tree commit diff
path: root/pkgs/applications/networking/browsers/elinks
diff options
context:
space:
mode:
authorLluis Batlle <viriketo@gmail.com>2013-03-15 11:50:09 +0100
committerLluis Batlle <viriketo@gmail.com>2013-03-16 13:39:30 +0100
commit8d76cf51bb635e238d6371fc304d701e2dece3d7 (patch)
tree7f95342f607ff68a057abc4379c8535c6ff30e92 /pkgs/applications/networking/browsers/elinks
parent6922ec9258740b56569b470278caaa9d205bde4c (diff)
downloadnixlib-8d76cf51bb635e238d6371fc304d701e2dece3d7.tar
nixlib-8d76cf51bb635e238d6371fc304d701e2dece3d7.tar.gz
nixlib-8d76cf51bb635e238d6371fc304d701e2dece3d7.tar.bz2
nixlib-8d76cf51bb635e238d6371fc304d701e2dece3d7.tar.lz
nixlib-8d76cf51bb635e238d6371fc304d701e2dece3d7.tar.xz
nixlib-8d76cf51bb635e238d6371fc304d701e2dece3d7.tar.zst
nixlib-8d76cf51bb635e238d6371fc304d701e2dece3d7.zip
elinks: allow building without guile
Guile doesn't build on armv5tel now (failing an important test),
so better if I can disable it for elinks.
Diffstat (limited to 'pkgs/applications/networking/browsers/elinks')
-rw-r--r--pkgs/applications/networking/browsers/elinks/default.nix12
1 files changed, 8 insertions, 4 deletions
diff --git a/pkgs/applications/networking/browsers/elinks/default.nix b/pkgs/applications/networking/browsers/elinks/default.nix
index 9334ff4bd41b..1618042364e8 100644
--- a/pkgs/applications/networking/browsers/elinks/default.nix
+++ b/pkgs/applications/networking/browsers/elinks/default.nix
@@ -1,5 +1,8 @@
 { stdenv, fetchurl, python, perl, ncurses, x11, bzip2, zlib, openssl
-, spidermonkey, guile, gpm }:
+, spidermonkey, gpm
+, enableGuile ? true, guile ? null }:
+
+assert enableGuile -> guile != null;
 
 stdenv.mkDerivation rec {
   name = "elinks-0.12pre5";
@@ -11,14 +14,15 @@ stdenv.mkDerivation rec {
 
   patches = [ ./gc-init.patch ];
 
-  buildInputs = [ python perl ncurses x11 bzip2 zlib openssl spidermonkey guile gpm ];
+  buildInputs = [ python perl ncurses x11 bzip2 zlib openssl spidermonkey gpm ]
+    ++ stdenv.lib.optional enableGuile guile;
 
   configureFlags =
     ''
-      --enable-finger --enable-html-highlight --with-guile
+      --enable-finger --enable-html-highlight
       --with-perl --with-python --enable-gopher --enable-cgi --enable-bittorrent
       --enable-nntp --with-openssl=${openssl}
-    '';
+    '' + stdenv.lib.optionalString enableGuile " --with-guile";
 
   crossAttrs = {
     propagatedBuildInputs = [ ncurses.crossDrv zlib.crossDrv openssl.crossDrv ];