nixpkgs/pkgs/development/libraries/webkitgtk/default.nix

56 lines
1.5 KiB
Nix
Raw Normal View History

2014-10-09 11:26:20 +01:00
{ stdenv, fetchurl, perl, python, ruby, bison, gperf, cmake
2015-09-25 09:28:51 +01:00
, pkgconfig, gettext, gobjectIntrospection, libnotify
, gtk2, gtk3, wayland, libwebp, enchant
2014-10-09 11:26:20 +01:00
, libxml2, libsoup, libsecret, libxslt, harfbuzz, libpthreadstubs
, enableGeoLocation ? true, geoclue2, sqlite
, gst-plugins-base
}:
assert enableGeoLocation -> geoclue2 != null;
with stdenv.lib;
stdenv.mkDerivation rec {
2014-10-09 11:26:20 +01:00
name = "webkitgtk-${version}";
2015-09-25 09:28:51 +01:00
version = "2.10.0";
meta = {
description = "Web content rendering engine, GTK+ port";
homepage = "http://webkitgtk.org/";
2014-10-09 11:26:20 +01:00
license = licenses.bsd2;
platforms = platforms.linux;
2014-10-30 22:41:09 +00:00
maintainers = with maintainers; [ iyzsong koral ];
};
2014-11-17 22:40:28 +00:00
preConfigure = "patchShebangs Tools";
src = fetchurl {
url = "http://webkitgtk.org/releases/${name}.tar.xz";
2015-09-25 09:28:51 +01:00
sha256 = "0vb8ca6dd9hxb5ycp54bdyykp10blbq5b6qkbak4yf9mxwi5ccj2";
};
2014-10-09 11:26:20 +01:00
patches = [ ./finding-harfbuzz-icu.patch ];
2015-09-25 09:28:51 +01:00
cmakeFlags = [ "-DPORT=GTK" "-DUSE_LIBHYPHEN=0" ];
2015-08-29 23:19:02 +01:00
# XXX: WebKit2 missing include path for gst-plugins-base.
# Filled: https://bugs.webkit.org/show_bug.cgi?id=148894
NIX_CFLAGS_COMPILE = "-I${gst-plugins-base}/include/gstreamer-1.0";
nativeBuildInputs = [
cmake perl python ruby bison gperf sqlite
2014-10-09 11:26:20 +01:00
pkgconfig gettext gobjectIntrospection
];
buildInputs = [
2015-09-25 09:28:51 +01:00
gtk2 wayland libwebp enchant libnotify
2014-10-09 11:26:20 +01:00
libxml2 libsecret libxslt harfbuzz libpthreadstubs
gst-plugins-base
] ++ optional enableGeoLocation geoclue2;
2014-03-27 08:11:56 +00:00
propagatedBuildInputs = [
2014-10-09 11:26:20 +01:00
libsoup gtk3
2014-03-27 08:11:56 +00:00
];
2015-09-25 09:28:51 +01:00
enableParallelBuilding = true;
}