2018-03-20 18:36:40 +00:00
|
|
|
{ stdenv, fetchurl, perl, python2, ruby, bison, gperf, cmake, ninja
|
2018-03-14 05:21:32 +00:00
|
|
|
, pkgconfig, gettext, gobjectIntrospection, libnotify, gnutls, libgcrypt
|
2018-03-20 18:36:40 +00:00
|
|
|
, gtk3, wayland, libwebp, enchant2, xorg, libxkbcommon, epoxy, at-spi2-core
|
2018-02-25 02:23:58 +00:00
|
|
|
, libxml2, libsoup, libsecret, libxslt, harfbuzz, libpthreadstubs, pcre, nettle, libtasn1, p11-kit
|
2018-03-14 19:15:06 +00:00
|
|
|
, libidn, libedit, readline, libGLU_combined, libintl
|
2016-09-18 20:27:59 +01:00
|
|
|
, enableGeoLocation ? true, geoclue2, sqlite
|
2017-10-26 22:52:37 +01:00
|
|
|
, enableGtk2Plugins ? false, gtk2 ? null
|
2018-03-15 00:38:07 +00:00
|
|
|
, gst-plugins-base, gst-plugins-bad, woff2
|
2016-09-18 20:27:59 +01:00
|
|
|
}:
|
|
|
|
|
|
|
|
assert enableGeoLocation -> geoclue2 != null;
|
2017-10-26 22:52:37 +01:00
|
|
|
assert enableGtk2Plugins -> gtk2 != null;
|
|
|
|
assert stdenv.isDarwin -> !enableGtk2Plugins;
|
2016-09-18 20:27:59 +01:00
|
|
|
|
|
|
|
with stdenv.lib;
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "webkitgtk-${version}";
|
2018-08-08 08:34:43 +01:00
|
|
|
version = "2.20.4";
|
2016-09-18 20:27:59 +01:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Web content rendering engine, GTK+ port";
|
2017-10-26 22:52:37 +01:00
|
|
|
homepage = https://webkitgtk.org/;
|
2016-09-18 20:27:59 +01:00
|
|
|
license = licenses.bsd2;
|
2018-06-15 02:46:20 +01:00
|
|
|
platforms = platforms.linux;
|
2016-09-18 20:27:59 +01:00
|
|
|
hydraPlatforms = [];
|
|
|
|
maintainers = with maintainers; [ ];
|
|
|
|
};
|
|
|
|
|
|
|
|
src = fetchurl {
|
2018-06-28 19:43:35 +01:00
|
|
|
url = "https://webkitgtk.org/releases/${name}.tar.xz";
|
2018-08-08 08:34:43 +01:00
|
|
|
sha256 = "0cmfjbfxssgrwhgqmk7kqws91k6pha519bnyjrfsgy640max2zfc";
|
2016-09-18 20:27:59 +01:00
|
|
|
};
|
|
|
|
|
2018-03-15 00:38:07 +00:00
|
|
|
patches = optionals stdenv.isDarwin [
|
|
|
|
## TODO add necessary patches for Darwin
|
2017-04-11 07:11:16 +01:00
|
|
|
];
|
2016-09-18 20:27:59 +01:00
|
|
|
|
2018-03-15 02:16:52 +00:00
|
|
|
postPatch = ''
|
|
|
|
patchShebangs .
|
|
|
|
'';
|
|
|
|
|
2016-10-27 02:23:25 +01:00
|
|
|
cmakeFlags = [
|
2016-09-18 20:27:59 +01:00
|
|
|
"-DPORT=GTK"
|
|
|
|
"-DUSE_LIBHYPHEN=0"
|
2018-03-20 18:36:40 +00:00
|
|
|
"-DENABLE_INTROSPECTION=ON"
|
2017-04-11 07:11:16 +01:00
|
|
|
]
|
2017-10-26 22:52:37 +01:00
|
|
|
++ optional (!enableGtk2Plugins) "-DENABLE_PLUGIN_PROCESS_GTK2=OFF"
|
2017-04-11 07:11:16 +01:00
|
|
|
++ optional stdenv.isLinux "-DENABLE_GLES2=ON"
|
|
|
|
++ optionals stdenv.isDarwin [
|
|
|
|
"-DUSE_SYSTEM_MALLOC=ON"
|
|
|
|
"-DUSE_ACCELERATE=0"
|
|
|
|
"-DENABLE_MINIBROWSER=OFF"
|
|
|
|
"-DENABLE_VIDEO=ON"
|
|
|
|
"-DENABLE_QUARTZ_TARGET=ON"
|
|
|
|
"-DENABLE_X11_TARGET=OFF"
|
|
|
|
"-DENABLE_OPENGL=OFF"
|
|
|
|
"-DENABLE_WEB_AUDIO=OFF"
|
|
|
|
"-DENABLE_WEBGL=OFF"
|
|
|
|
"-DENABLE_GRAPHICS_CONTEXT_3D=OFF"
|
|
|
|
"-DENABLE_GTKDOC=OFF"
|
2016-09-18 20:27:59 +01:00
|
|
|
];
|
|
|
|
|
|
|
|
nativeBuildInputs = [
|
2018-03-20 18:36:40 +00:00
|
|
|
cmake ninja perl python2 ruby bison gperf
|
2016-09-18 20:27:59 +01:00
|
|
|
pkgconfig gettext gobjectIntrospection
|
|
|
|
];
|
|
|
|
|
2018-03-14 19:15:06 +00:00
|
|
|
buildInputs = [
|
|
|
|
libintl libwebp enchant2 libnotify gnutls pcre nettle libidn libgcrypt woff2
|
2018-02-25 02:23:58 +00:00
|
|
|
libxml2 libsecret libxslt harfbuzz libpthreadstubs libtasn1 p11-kit
|
|
|
|
sqlite gst-plugins-base gst-plugins-bad libxkbcommon epoxy at-spi2-core
|
2016-09-18 20:27:59 +01:00
|
|
|
] ++ optional enableGeoLocation geoclue2
|
2017-10-26 22:52:37 +01:00
|
|
|
++ optional enableGtk2Plugins gtk2
|
2018-03-25 22:33:23 +01:00
|
|
|
++ (with xorg; [ libXdmcp libXt libXtst libXdamage ])
|
2018-02-24 13:12:44 +00:00
|
|
|
++ optionals stdenv.isDarwin [ libedit readline libGLU_combined ]
|
2017-04-11 07:11:16 +01:00
|
|
|
++ optional stdenv.isLinux wayland;
|
2016-09-18 20:27:59 +01:00
|
|
|
|
|
|
|
propagatedBuildInputs = [
|
|
|
|
libsoup gtk3
|
|
|
|
];
|
|
|
|
|
2017-09-25 14:40:41 +01:00
|
|
|
outputs = [ "out" "dev" ];
|
2016-09-18 20:27:59 +01:00
|
|
|
}
|