2019-12-05 12:13:29 +01:00
|
|
|
{ stdenv
|
|
|
|
, fetchurl
|
|
|
|
, perl
|
2019-12-05 12:44:36 +01:00
|
|
|
, python3
|
2019-12-05 12:13:29 +01:00
|
|
|
, ruby
|
|
|
|
, bison
|
|
|
|
, gperf
|
|
|
|
, cmake
|
|
|
|
, ninja
|
|
|
|
, pkgconfig
|
|
|
|
, gettext
|
|
|
|
, gobject-introspection
|
|
|
|
, libnotify
|
|
|
|
, gnutls
|
|
|
|
, libgcrypt
|
|
|
|
, gtk3
|
|
|
|
, wayland
|
|
|
|
, libwebp
|
|
|
|
, enchant2
|
|
|
|
, xorg
|
|
|
|
, libxkbcommon
|
|
|
|
, epoxy
|
|
|
|
, at-spi2-core
|
|
|
|
, libxml2
|
|
|
|
, libsoup
|
|
|
|
, libsecret
|
|
|
|
, libxslt
|
|
|
|
, harfbuzz
|
|
|
|
, libpthreadstubs
|
|
|
|
, pcre
|
|
|
|
, nettle
|
|
|
|
, libtasn1
|
|
|
|
, p11-kit
|
|
|
|
, libidn
|
|
|
|
, libedit
|
|
|
|
, readline
|
|
|
|
, libGL
|
|
|
|
, libGLU
|
|
|
|
, libintl
|
|
|
|
, openjpeg
|
|
|
|
, enableGeoLocation ? true
|
|
|
|
, geoclue2
|
|
|
|
, sqlite
|
|
|
|
, enableGtk2Plugins ? false
|
|
|
|
, gtk2 ? null
|
|
|
|
, gst-plugins-base
|
|
|
|
, gst-plugins-bad
|
|
|
|
, woff2
|
|
|
|
, bubblewrap
|
|
|
|
, libseccomp
|
|
|
|
, xdg-dbus-proxy
|
|
|
|
, substituteAll
|
2019-12-11 05:38:55 +01:00
|
|
|
, gnome3
|
2020-02-25 22:15:40 +01:00
|
|
|
, glib
|
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;
|
2019-12-05 12:13:29 +01:00
|
|
|
|
2016-09-18 21:27:59 +02:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "webkitgtk";
|
2020-02-14 12:06:04 +01:00
|
|
|
version = "2.26.4";
|
2016-09-18 21:27:59 +02:00
|
|
|
|
2019-12-05 12:13:29 +01:00
|
|
|
outputs = [ "out" "dev" ];
|
2016-09-18 21:27:59 +02:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-08-15 14:41:18 +02:00
|
|
|
url = "https://webkitgtk.org/releases/${pname}-${version}.tar.xz";
|
2020-02-14 12:06:04 +01:00
|
|
|
sha256 = "0gqi9f9njrdn8vad1zvr59b25arwc8r0n8bp25sgkbfz2c3r11j3";
|
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;
|
|
|
|
})
|
2019-11-07 17:32:21 +01:00
|
|
|
./libglvnd-headers.patch
|
2017-04-11 08:11:16 +02:00
|
|
|
];
|
2016-09-18 21:27:59 +02:00
|
|
|
|
2020-02-25 22:15:40 +01:00
|
|
|
preConfigure = stdenv.lib.optionalString (stdenv.hostPlatform != stdenv.buildPlatform) ''
|
|
|
|
# Ignore gettext in cmake_prefix_path so that find_program doesn't
|
|
|
|
# pick up the wrong gettext. TODO: Find a better solution for
|
|
|
|
# this, maybe make cmake not look up executables in
|
|
|
|
# CMAKE_PREFIX_PATH.
|
|
|
|
cmakeFlags+=" -DCMAKE_IGNORE_PATH=${getBin gettext}/bin"
|
|
|
|
'';
|
|
|
|
|
2016-09-18 21:27:59 +02:00
|
|
|
nativeBuildInputs = [
|
2019-12-05 12:13:29 +01:00
|
|
|
bison
|
|
|
|
cmake
|
|
|
|
gettext
|
|
|
|
gobject-introspection
|
|
|
|
gperf
|
|
|
|
ninja
|
|
|
|
perl
|
|
|
|
pkgconfig
|
2019-12-05 12:44:36 +01:00
|
|
|
python3
|
2019-12-05 12:13:29 +01:00
|
|
|
ruby
|
2020-02-25 22:15:40 +01:00
|
|
|
glib
|
|
|
|
wayland
|
2016-09-18 21:27:59 +02:00
|
|
|
];
|
|
|
|
|
2018-03-14 20:15:06 +01:00
|
|
|
buildInputs = [
|
2019-12-05 12:13:29 +01:00
|
|
|
at-spi2-core
|
|
|
|
enchant2
|
|
|
|
epoxy
|
|
|
|
gnutls
|
|
|
|
gst-plugins-bad
|
|
|
|
gst-plugins-base
|
|
|
|
harfbuzz
|
|
|
|
libGL
|
|
|
|
libGLU
|
|
|
|
libgcrypt
|
|
|
|
libidn
|
|
|
|
libintl
|
|
|
|
libnotify
|
|
|
|
libpthreadstubs
|
|
|
|
libsecret
|
|
|
|
libtasn1
|
|
|
|
libwebp
|
|
|
|
libxkbcommon
|
|
|
|
libxml2
|
|
|
|
libxslt
|
|
|
|
nettle
|
|
|
|
openjpeg
|
|
|
|
p11-kit
|
|
|
|
pcre
|
|
|
|
sqlite
|
|
|
|
woff2
|
|
|
|
] ++ (with xorg; [
|
|
|
|
libXdamage
|
|
|
|
libXdmcp
|
|
|
|
libXt
|
|
|
|
libXtst
|
|
|
|
]) ++ optionals stdenv.isDarwin [
|
|
|
|
libedit
|
|
|
|
readline
|
|
|
|
] ++ optionals stdenv.isLinux [
|
|
|
|
bubblewrap
|
|
|
|
libseccomp
|
|
|
|
wayland
|
|
|
|
xdg-dbus-proxy
|
2016-09-18 21:27:59 +02:00
|
|
|
] ++ optional enableGeoLocation geoclue2
|
2019-12-05 12:13:29 +01:00
|
|
|
++ optional enableGtk2Plugins gtk2;
|
2016-09-18 21:27:59 +02:00
|
|
|
|
|
|
|
propagatedBuildInputs = [
|
2019-12-05 12:13:29 +01:00
|
|
|
gtk3
|
|
|
|
libsoup
|
2016-09-18 21:27:59 +02:00
|
|
|
];
|
|
|
|
|
2019-12-05 12:13:29 +01:00
|
|
|
cmakeFlags = [
|
|
|
|
"-DENABLE_INTROSPECTION=ON"
|
|
|
|
"-DPORT=GTK"
|
|
|
|
"-DUSE_LIBHYPHEN=OFF"
|
|
|
|
"-DUSE_WPE_RENDERER=OFF"
|
|
|
|
] ++ optionals stdenv.isDarwin [
|
|
|
|
"-DENABLE_GRAPHICS_CONTEXT_3D=OFF"
|
|
|
|
"-DENABLE_GTKDOC=OFF"
|
|
|
|
"-DENABLE_MINIBROWSER=OFF"
|
|
|
|
"-DENABLE_OPENGL=OFF"
|
|
|
|
"-DENABLE_QUARTZ_TARGET=ON"
|
|
|
|
"-DENABLE_VIDEO=ON"
|
|
|
|
"-DENABLE_WEBGL=OFF"
|
|
|
|
"-DENABLE_WEB_AUDIO=OFF"
|
|
|
|
"-DENABLE_X11_TARGET=OFF"
|
|
|
|
"-DUSE_ACCELERATE=0"
|
|
|
|
"-DUSE_SYSTEM_MALLOC=ON"
|
|
|
|
] ++ optional (!enableGtk2Plugins) "-DENABLE_PLUGIN_PROCESS_GTK2=OFF"
|
|
|
|
++ optional stdenv.isLinux "-DENABLE_GLES2=ON";
|
|
|
|
|
|
|
|
postPatch = ''
|
|
|
|
patchShebangs .
|
|
|
|
'';
|
2019-09-16 14:06:13 +02:00
|
|
|
|
2019-12-05 12:13:29 +01:00
|
|
|
meta = {
|
|
|
|
description = "Web content rendering engine, GTK port";
|
|
|
|
homepage = https://webkitgtk.org/;
|
|
|
|
license = licenses.bsd2;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
hydraPlatforms = [];
|
2019-12-11 05:38:55 +01:00
|
|
|
maintainers = gnome3.maintainers;
|
2019-12-05 12:13:29 +01:00
|
|
|
};
|
2016-09-18 21:27:59 +02:00
|
|
|
}
|