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

84 lines
2.5 KiB
Nix
Raw Normal View History

2018-03-20 19:36:40 +01:00
{ stdenv, fetchurl, perl, python2, ruby, bison, gperf, cmake, ninja
, 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
, 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
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 {
name = "webkitgtk-${version}";
version = "2.24.2";
2016-09-18 21:27:59 +02:00
meta = {
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 {
url = "https://webkitgtk.org/releases/${name}.tar.xz";
sha256 = "071jnjvjq6wsxx1jh4ql3j53h1nhphs5ga67fa5i9xjvs3qb3701";
2016-09-18 21:27:59 +02:00
};
2018-03-15 01:38:07 +01:00
patches = optionals stdenv.isDarwin [
## TODO add necessary patches for Darwin
];
2016-09-18 21:27:59 +02:00
postPatch = ''
patchShebangs .
'';
2016-10-27 03:23:25 +02:00
cmakeFlags = [
2016-09-18 21:27:59 +02:00
"-DPORT=GTK"
"-DUSE_LIBHYPHEN=0"
2018-03-20 19:36:40 +01:00
"-DENABLE_INTROSPECTION=ON"
]
2017-10-26 23:52:37 +02:00
++ optional (!enableGtk2Plugins) "-DENABLE_PLUGIN_PROCESS_GTK2=OFF"
++ 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
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
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 ])
++ optionals stdenv.isDarwin [ libedit readline libGLU_combined ]
++ optional stdenv.isLinux wayland;
2016-09-18 21:27:59 +02:00
propagatedBuildInputs = [
libsoup gtk3
];
2017-09-25 15:40:41 +02:00
outputs = [ "out" "dev" ];
2016-09-18 21:27:59 +02:00
}