summary refs log tree commit diff
path: root/pkgs/development/libraries
diff options
context:
space:
mode:
authorMichael Raskin <7c6f434c@mail.ru>2015-01-06 19:34:24 +0300
committerMichael Raskin <7c6f434c@mail.ru>2015-01-06 19:34:30 +0300
commit6d74aacbea5e78a49dc6ae1419d779d78283ee5e (patch)
treed904f916436448cfcc685fe43ca31297eff46c76 /pkgs/development/libraries
parent053083368bc38a5794231a4cdb4145d30bbbd603 (diff)
downloadnixpkgs-6d74aacbea5e78a49dc6ae1419d779d78283ee5e.tar
nixpkgs-6d74aacbea5e78a49dc6ae1419d779d78283ee5e.tar.gz
nixpkgs-6d74aacbea5e78a49dc6ae1419d779d78283ee5e.tar.bz2
nixpkgs-6d74aacbea5e78a49dc6ae1419d779d78283ee5e.tar.lz
nixpkgs-6d74aacbea5e78a49dc6ae1419d779d78283ee5e.tar.xz
nixpkgs-6d74aacbea5e78a49dc6ae1419d779d78283ee5e.tar.zst
nixpkgs-6d74aacbea5e78a49dc6ae1419d779d78283ee5e.zip
Pass sqlite to webkitgtk --- fails to configure otherwise
Diffstat (limited to 'pkgs/development/libraries')
-rw-r--r--pkgs/development/libraries/webkitgtk/2.4.6.nix4
-rw-r--r--pkgs/development/libraries/webkitgtk/default.nix4
2 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/development/libraries/webkitgtk/2.4.6.nix b/pkgs/development/libraries/webkitgtk/2.4.6.nix
index a2344f71f88..b4645f50818 100644
--- a/pkgs/development/libraries/webkitgtk/2.4.6.nix
+++ b/pkgs/development/libraries/webkitgtk/2.4.6.nix
@@ -1,6 +1,6 @@
 { stdenv, fetchurl, perl, python, ruby, bison, gperf, flex
 , pkgconfig, which, gettext, gobjectIntrospection
-, gtk2, gtk3, wayland, libwebp, enchant
+, gtk2, gtk3, wayland, libwebp, enchant, sqlite
 , libxml2, libsoup, libsecret, libxslt, harfbuzz
 , gst-plugins-base
 , withGtk2 ? false
@@ -50,7 +50,7 @@ stdenv.mkDerivation rec {
   buildInputs = [
     gtk2 wayland libwebp enchant
     libxml2 libsecret libxslt harfbuzz
-    gst-plugins-base
+    gst-plugins-base sqlite
   ];
 
   propagatedBuildInputs = [
diff --git a/pkgs/development/libraries/webkitgtk/default.nix b/pkgs/development/libraries/webkitgtk/default.nix
index 9f56d200647..f95cffbe551 100644
--- a/pkgs/development/libraries/webkitgtk/default.nix
+++ b/pkgs/development/libraries/webkitgtk/default.nix
@@ -2,7 +2,7 @@
 , pkgconfig, gettext, gobjectIntrospection
 , gtk2, gtk3, wayland, libwebp, enchant
 , libxml2, libsoup, libsecret, libxslt, harfbuzz, libpthreadstubs
-, enableGeoLocation ? true, geoclue2
+, enableGeoLocation ? true, geoclue2, sqlite
 , gst-plugins-base
 }:
 
@@ -33,7 +33,7 @@ stdenv.mkDerivation rec {
   cmakeFlags = [ "-DPORT=GTK" ];
 
   nativeBuildInputs = [
-    cmake perl python ruby bison gperf
+    cmake perl python ruby bison gperf sqlite
     pkgconfig gettext gobjectIntrospection
   ];