2018-03-20 19:36:40 +01:00
|
|
|
{ stdenv, fetchurl, perl, python2, ruby, bison, gperf, cmake, ninja
|
2018-12-02 12:41:15 +01:00
|
|
|
, pkgconfig, gettext, gobject-introspection, libnotify, gnutls, libgcrypt
|
2018-03-20 19:36:40 +01:00
|
|
|
, gtk3, wayland, libwebp, enchant2, xorg, libxkbcommon, epoxy, at-spi2-core
|
2018-02-25 03:23:58 +01:00
|
|
|
, libxml2, libsoup, libsecret, libxslt, harfbuzz, libpthreadstubs, pcre, nettle, libtasn1, p11-kit
|
2019-03-13 21:08:39 +01:00
|
|
|
, libidn, libedit, readline, libGLU_combined, libintl, openjpeg
|
2016-09-18 21:27:59 +02:00
|
|
|
, enableGeoLocation ? true, geoclue2, sqlite
|
2017-10-26 23:52:37 +02:00
|
|
|
, enableGtk2Plugins ? false, gtk2 ? null
|
2018-03-15 01:38:07 +01:00
|
|
|
, gst-plugins-base, gst-plugins-bad, woff2
|
2019-09-16 14:06:13 +02:00
|
|
|
, bubblewrap, libseccomp, xdg-dbus-proxy, substituteAll
|
2016-09-18 21:27:59 +02:00
|
|
|
}:
|
|
|
|
|
|
|
|
assert enableGeoLocation -> geoclue2 != null;
|
2017-10-26 23:52:37 +02:00
|
|
|
assert enableGtk2Plugins -> gtk2 != null;
|
|
|
|
assert stdenv.isDarwin -> !enableGtk2Plugins;
|
2016-09-18 21:27:59 +02:00
|
|
|
|
|
|
|
with stdenv.lib;
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "webkitgtk";
|
2019-09-16 14:06:13 +02:00
|
|
|
version = "2.26.1";
|
2016-09-18 21:27:59 +02:00
|
|
|
|
|
|
|
meta = {
|
2019-09-04 00:49:40 +02:00
|
|
|
description = "Web content rendering engine, GTK port";
|
2017-10-26 23:52:37 +02:00
|
|
|
homepage = https://webkitgtk.org/;
|
2016-09-18 21:27:59 +02:00
|
|
|
license = licenses.bsd2;
|
2018-06-15 03:46:20 +02:00
|
|
|
platforms = platforms.linux;
|
2016-09-18 21:27:59 +02:00
|
|
|
hydraPlatforms = [];
|
|
|
|
maintainers = with maintainers; [ ];
|
|
|
|
};
|
|
|
|
|
|
|
|
src = fetchurl {
|
2019-08-15 14:41:18 +02:00
|
|
|
url = "https://webkitgtk.org/releases/${pname}-${version}.tar.xz";
|
2019-09-16 14:06:13 +02:00
|
|
|
sha256 = "0mfikjfjhwcnrxbzdyh3fl9bbs2azgbdnx8h5910h41b3n022jvb";
|
2016-09-18 21:27:59 +02:00
|
|
|
};
|
|
|
|
|
2019-09-16 14:06:13 +02:00
|
|
|
patches = optionals stdenv.isLinux [
|
|
|
|
(substituteAll {
|
|
|
|
src = ./fix-bubblewrap-paths.patch;
|
|
|
|
inherit (builtins) storeDir;
|
|
|
|
})
|
2017-04-11 08:11:16 +02:00
|
|
|
];
|
2016-09-18 21:27:59 +02:00
|
|
|
|
2018-03-15 03:16:52 +01:00
|
|
|
postPatch = ''
|
|
|
|
patchShebangs .
|
|
|
|
'';
|
|
|
|
|
2016-10-27 03:23:25 +02:00
|
|
|
cmakeFlags = [
|
2016-09-18 21:27:59 +02:00
|
|
|
"-DPORT=GTK"
|
2019-09-16 14:06:13 +02:00
|
|
|
"-DUSE_LIBHYPHEN=OFF"
|
2018-03-20 19:36:40 +01:00
|
|
|
"-DENABLE_INTROSPECTION=ON"
|
2019-09-16 14:06:13 +02:00
|
|
|
"-DUSE_WPE_RENDERER=OFF"
|
2017-04-11 08:11:16 +02:00
|
|
|
]
|
2017-10-26 23:52:37 +02:00
|
|
|
++ optional (!enableGtk2Plugins) "-DENABLE_PLUGIN_PROCESS_GTK2=OFF"
|
2017-04-11 08:11:16 +02: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 21:27:59 +02:00
|
|
|
];
|
|
|
|
|
|
|
|
nativeBuildInputs = [
|
2018-03-20 19:36:40 +01:00
|
|
|
cmake ninja perl python2 ruby bison gperf
|
2018-12-02 12:41:15 +01:00
|
|
|
pkgconfig gettext gobject-introspection
|
2016-09-18 21:27:59 +02:00
|
|
|
];
|
|
|
|
|
2018-03-14 20:15:06 +01:00
|
|
|
buildInputs = [
|
|
|
|
libintl libwebp enchant2 libnotify gnutls pcre nettle libidn libgcrypt woff2
|
2019-03-13 21:08:39 +01:00
|
|
|
libxml2 libsecret libxslt harfbuzz libpthreadstubs libtasn1 p11-kit openjpeg
|
2018-02-25 03:23:58 +01:00
|
|
|
sqlite gst-plugins-base gst-plugins-bad libxkbcommon epoxy at-spi2-core
|
2016-09-18 21:27:59 +02:00
|
|
|
] ++ optional enableGeoLocation geoclue2
|
2017-10-26 23:52:37 +02:00
|
|
|
++ optional enableGtk2Plugins gtk2
|
2018-03-25 23:33:23 +02:00
|
|
|
++ (with xorg; [ libXdmcp libXt libXtst libXdamage ])
|
2018-02-24 14:12:44 +01:00
|
|
|
++ optionals stdenv.isDarwin [ libedit readline libGLU_combined ]
|
2019-09-16 14:06:13 +02:00
|
|
|
++ optionals stdenv.isLinux [
|
|
|
|
wayland bubblewrap libseccomp xdg-dbus-proxy
|
|
|
|
];
|
2016-09-18 21:27:59 +02:00
|
|
|
|
|
|
|
propagatedBuildInputs = [
|
|
|
|
libsoup gtk3
|
|
|
|
];
|
|
|
|
|
2017-09-25 15:40:41 +02:00
|
|
|
outputs = [ "out" "dev" ];
|
2019-09-16 14:06:13 +02:00
|
|
|
|
2016-09-18 21:27:59 +02:00
|
|
|
}
|