about summary refs log tree commit diff
path: root/pkgs/applications/editors/edbrowse
diff options
context:
space:
mode:
authorRobin Gloster <mail@glob.in>2017-01-25 20:07:40 +0100
committerRobin Gloster <mail@glob.in>2017-01-25 20:12:42 +0100
commitd7b17e8b1cc6d67ced284e849665f199b457d26e (patch)
tree9da3993a6fba794839d8f78cb1371bd7428eb51d /pkgs/applications/editors/edbrowse
parent61f893fb64b542507fa3d99480c5372a35aa1d4a (diff)
edbrowse: mark as broken
Diffstat (limited to 'pkgs/applications/editors/edbrowse')
-rw-r--r--pkgs/applications/editors/edbrowse/default.nix8
1 files changed, 5 insertions, 3 deletions
diff --git a/pkgs/applications/editors/edbrowse/default.nix b/pkgs/applications/editors/edbrowse/default.nix
index e6f942dbfdd64..e5e64a32e9779 100644
--- a/pkgs/applications/editors/edbrowse/default.nix
+++ b/pkgs/applications/editors/edbrowse/default.nix
@@ -1,10 +1,11 @@
-{ stdenv, fetchurl, spidermonkey_24, unzip, curl, pcre, readline, openssl, perl, html-tidy }:
+{ stdenv, fetchurl, spidermonkey, unzip, curl, pcre, readline, openssl, perl, html-tidy }:
+
 stdenv.mkDerivation rec {
   name = "edbrowse-${version}";
   version = "3.6.1";
 
   nativeBuildInputs = [ unzip ];
-  buildInputs = [ curl pcre readline openssl spidermonkey_24 perl html-tidy ];
+  buildInputs = [ curl pcre readline openssl spidermonkey perl html-tidy ];
 
   patchPhase = ''
     substituteInPlace src/ebjs.c --replace \"edbrowse-js\" \"$out/bin/edbrowse-js\"
@@ -14,7 +15,7 @@ stdenv.mkDerivation rec {
     done
   '';
 
-  NIX_CFLAGS_COMPILE = "-I${spidermonkey_24.dev}/include/mozjs-24";
+  NIX_CFLAGS_COMPILE = "-I${spidermonkey}/include/mozjs-31";
   makeFlags = "-C src prefix=$(out)";
 
   src = fetchurl {
@@ -34,5 +35,6 @@ stdenv.mkDerivation rec {
     homepage = http://edbrowse.org/;
     maintainers = [ maintainers.schmitthenner maintainers.vrthra ];
     platforms = platforms.linux;
+    broken = true;  # no compatible spidermonkey
   };
 }