diff options
author | Ryan Trinkle | 2017-09-21 23:26:33 -0400 |
---|---|---|
committer | John Ericson | 2017-09-28 12:17:37 -0400 |
commit | f08d6f0e2daf9f3d9daa070eee223855b33c430d (patch) | |
tree | 1c560f9b37c0a47a2279996397d326162a4ee719 /pkgs | |
parent | c955c86fd934862c82d44dc06af91def87d6566e (diff) |
webkitgtk-2.16: move sqlite from nativeBuildInputs to buildInputs
Diffstat (limited to 'pkgs')
-rw-r--r-- | pkgs/development/libraries/webkitgtk/2.16.nix | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/libraries/webkitgtk/2.16.nix b/pkgs/development/libraries/webkitgtk/2.16.nix index 7d7424d914de..47b29eb001f4 100644 --- a/pkgs/development/libraries/webkitgtk/2.16.nix +++ b/pkgs/development/libraries/webkitgtk/2.16.nix @@ -83,14 +83,14 @@ stdenv.mkDerivation rec { + (optionalString stdenv.isDarwin " -lintl"); nativeBuildInputs = [ - cmake perl python2 ruby bison gperf sqlite + cmake perl python2 ruby bison gperf pkgconfig gettext gobjectIntrospection ]; buildInputs = libintlOrEmpty ++ [ gtk2 libwebp enchant libnotify gnutls pcre nettle libidn libxml2 libsecret libxslt harfbuzz libpthreadstubs libtasn1 p11_kit - gst-plugins-base libxkbcommon epoxy at_spi2_core + sqlite gst-plugins-base libxkbcommon epoxy at_spi2_core ] ++ optional enableGeoLocation geoclue2 ++ (with xlibs; [ libXdmcp libXt libXtst ]) ++ optionals stdenv.isDarwin [ libedit readline mesa ] |