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

56 lines
1.5 KiB
Nix
Raw Normal View History

2014-10-09 12:26:20 +02:00
{ stdenv, fetchurl, perl, python, ruby, bison, gperf, cmake
2015-09-25 10:28:51 +02:00
, pkgconfig, gettext, gobjectIntrospection, libnotify
, gtk2, gtk3, wayland, libwebp, enchant
2014-10-09 12:26:20 +02:00
, libxml2, libsoup, libsecret, libxslt, harfbuzz, libpthreadstubs
, enableGeoLocation ? true, geoclue2, sqlite, xorg
, gst-plugins-base
}:
assert enableGeoLocation -> geoclue2 != null;
with stdenv.lib;
stdenv.mkDerivation rec {
2014-10-09 12:26:20 +02:00
name = "webkitgtk-${version}";
version = "2.10.4";
meta = {
description = "Web content rendering engine, GTK+ port";
homepage = "http://webkitgtk.org/";
2014-10-09 12:26:20 +02:00
license = licenses.bsd2;
platforms = platforms.linux;
2014-10-30 23:41:09 +01:00
maintainers = with maintainers; [ iyzsong koral ];
};
2014-11-17 23:40:28 +01:00
preConfigure = "patchShebangs Tools";
src = fetchurl {
url = "http://webkitgtk.org/releases/${name}.tar.xz";
sha256 = "0mghsbfnmmf6nsf7cb3ah76s77aigkzf3k6kw96wgh6all6jdy6v";
};
2014-10-09 12:26:20 +02:00
patches = [ ./finding-harfbuzz-icu.patch ];
2015-09-25 10:28:51 +02:00
cmakeFlags = [ "-DPORT=GTK" "-DUSE_LIBHYPHEN=0" ];
2015-08-30 00:19:02 +02: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 12:26:20 +02:00
pkgconfig gettext gobjectIntrospection
];
buildInputs = [
2015-09-25 10:28:51 +02:00
gtk2 wayland libwebp enchant libnotify
2014-10-09 12:26:20 +02:00
libxml2 libsecret libxslt harfbuzz libpthreadstubs
gst-plugins-base xorg.libXt
] ++ optional enableGeoLocation geoclue2;
2014-03-27 09:11:56 +01:00
propagatedBuildInputs = [
2014-10-09 12:26:20 +02:00
libsoup gtk3
2014-03-27 09:11:56 +01:00
];
2015-09-25 10:28:51 +02:00
enableParallelBuilding = true;
}