52 lines
1.3 KiB
Nix
52 lines
1.3 KiB
Nix
{ stdenv, fetchurl, perl, python, ruby, bison, gperf, cmake
|
|
, pkgconfig, gettext, gobjectIntrospection
|
|
, gtk2, gtk3, wayland, libwebp, enchant
|
|
, libxml2, libsoup, libsecret, libxslt, harfbuzz, libpthreadstubs
|
|
, enableGeoLocation ? true, geoclue2, sqlite
|
|
, gst-plugins-base
|
|
}:
|
|
|
|
assert enableGeoLocation -> geoclue2 != null;
|
|
|
|
with stdenv.lib;
|
|
stdenv.mkDerivation rec {
|
|
name = "webkitgtk-${version}";
|
|
version = "2.6.5";
|
|
|
|
meta = {
|
|
description = "Web content rendering engine, GTK+ port";
|
|
homepage = "http://webkitgtk.org/";
|
|
license = licenses.bsd2;
|
|
platforms = platforms.linux;
|
|
maintainers = with maintainers; [ iyzsong koral ];
|
|
};
|
|
|
|
preConfigure = "patchShebangs Tools";
|
|
|
|
src = fetchurl {
|
|
url = "http://webkitgtk.org/releases/${name}.tar.xz";
|
|
sha256 = "14vmqq6hr3jzphay49984kj22vlqhpsjmwh1krdm9k57rqbq0rdi";
|
|
};
|
|
|
|
patches = [ ./finding-harfbuzz-icu.patch ];
|
|
|
|
cmakeFlags = [ "-DPORT=GTK" ];
|
|
|
|
nativeBuildInputs = [
|
|
cmake perl python ruby bison gperf sqlite
|
|
pkgconfig gettext gobjectIntrospection
|
|
];
|
|
|
|
buildInputs = [
|
|
gtk2 wayland libwebp enchant
|
|
libxml2 libsecret libxslt harfbuzz libpthreadstubs
|
|
gst-plugins-base
|
|
] ++ optional enableGeoLocation geoclue2;
|
|
|
|
propagatedBuildInputs = [
|
|
libsoup gtk3
|
|
];
|
|
|
|
# enableParallelBuilding = true; # build problems on Hydra
|
|
}
|