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

65 lines
1.8 KiB
Nix
Raw Normal View History

2016-11-18 13:43:26 +00:00
{ stdenv, fetchurl, perl, python2, ruby, bison, gperf, cmake
2016-09-18 19:27:59 +00:00
, pkgconfig, gettext, gobjectIntrospection, libnotify, gnutls
, gtk2, gtk3, wayland, libwebp, enchant, xlibs, libxkbcommon, epoxy, at_spi2_core
, libxml2, libsoup, libsecret, libxslt, harfbuzz, libpthreadstubs, pcre, nettle, libtasn1, p11_kit
, libidn
2016-09-18 19:27:59 +00:00
, enableGeoLocation ? true, geoclue2, sqlite
, gst-plugins-base
}:
assert enableGeoLocation -> geoclue2 != null;
with stdenv.lib;
stdenv.mkDerivation rec {
name = "webkitgtk-${version}";
2017-02-15 16:22:11 +00:00
version = "2.14.5";
2016-09-18 19:27:59 +00:00
meta = {
description = "Web content rendering engine, GTK+ port";
homepage = "http://webkitgtk.org/";
license = licenses.bsd2;
platforms = platforms.linux;
hydraPlatforms = [];
maintainers = with maintainers; [ ];
};
preConfigure = "patchShebangs Tools";
src = fetchurl {
url = "http://webkitgtk.org/releases/${name}.tar.xz";
2017-02-15 16:22:11 +00:00
sha256 = "17rnjs7yl198bkghzcc2cgh30sb5i03irb6wag3xchwv7b1z3a1w";
2016-09-18 19:27:59 +00:00
};
# see if we can clean this up....
patches = [ ./finding-harfbuzz-icu.patch ];
2016-10-27 01:23:25 +00:00
cmakeFlags = [
2016-09-18 19:27:59 +00:00
"-DPORT=GTK"
"-DUSE_LIBHYPHEN=0"
"-DENABLE_GLES2=ON"
];
# 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.dev}/include/gstreamer-1.0";
2016-09-18 19:27:59 +00:00
nativeBuildInputs = [
2016-11-18 13:43:26 +00:00
cmake perl python2 ruby bison gperf sqlite
2016-09-18 19:27:59 +00:00
pkgconfig gettext gobjectIntrospection
];
buildInputs = [
gtk2 wayland libwebp enchant libnotify gnutls pcre nettle libidn
libxml2 libsecret libxslt harfbuzz libpthreadstubs libtasn1 p11_kit
2016-09-18 19:27:59 +00:00
gst-plugins-base libxkbcommon epoxy at_spi2_core
] ++ optional enableGeoLocation geoclue2
++ (with xlibs; [ libXdmcp libXt libXtst ]);
propagatedBuildInputs = [
libsoup gtk3
];
enableParallelBuilding = true;
}