From 6372599c4e324122a79d79e32f382fbf0b9ab646 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B8rn=20Forsman?= Date: Tue, 26 Apr 2016 22:01:45 +0200 Subject: [PATCH] xulrunner: use bundled sqlite (unbreak build) sqlite on release-15.09 is too old, use bundled sqlite instead to fix this build issue: configure:24978: checking for sqlite3 >= 3.9.1 configure: error: Library requirements (sqlite3 >= 3.9.1) not met; [...] This is the same fix as in commit 969c67f48cb8cde4c6981cdc644c6ca4e6e4ba57 ("firefox: Fix build"). --- pkgs/development/interpreters/xulrunner/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/interpreters/xulrunner/default.nix b/pkgs/development/interpreters/xulrunner/default.nix index d61b4e5f2f13..05097227d9a4 100644 --- a/pkgs/development/interpreters/xulrunner/default.nix +++ b/pkgs/development/interpreters/xulrunner/default.nix @@ -22,7 +22,7 @@ stdenv.mkDerivation rec { xorg.libX11 xorg.libXrender xorg.libXft xorg.libXt file alsaLib nspr nss libnotify xorg.pixman yasm mesa xorg.libXScrnSaver xorg.scrnsaverproto pysqlite - xorg.libXext xorg.xextproto sqlite unzip makeWrapper + xorg.libXext xorg.xextproto /*sqlite*/ unzip makeWrapper hunspell libevent libstartup_notification libvpx cairo gstreamer gst_plugins_base icu ]; @@ -42,7 +42,7 @@ stdenv.mkDerivation rec { "--enable-system-ffi" "--enable-system-hunspell" "--enable-system-pixman" - "--enable-system-sqlite" + #"--enable-system-sqlite" "--enable-system-cairo" "--enable-gstreamer" "--enable-startup-notification"