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

84 lines
2.5 KiB
Nix
Raw Normal View History

2018-03-20 18:36:40 +00:00
{ stdenv, fetchurl, perl, python2, ruby, bison, gperf, cmake, ninja
, pkgconfig, gettext, gobject-introspection, libnotify, gnutls, libgcrypt
2018-03-20 18:36:40 +00: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 20:08:39 +00:00
, libidn, libedit, readline, libGLU_combined, libintl, openjpeg
2016-09-18 19:27:59 +00:00
, enableGeoLocation ? true, geoclue2, sqlite
2017-10-26 21:52:37 +00:00
, enableGtk2Plugins ? false, gtk2 ? null
2018-03-15 00:38:07 +00:00
, gst-plugins-base, gst-plugins-bad, woff2
2016-09-18 19:27:59 +00:00
}:
assert enableGeoLocation -> geoclue2 != null;
2017-10-26 21:52:37 +00:00
assert enableGtk2Plugins -> gtk2 != null;
assert stdenv.isDarwin -> !enableGtk2Plugins;
2016-09-18 19:27:59 +00:00
with stdenv.lib;
stdenv.mkDerivation rec {
name = "webkitgtk-${version}";
version = "2.24.3";
2016-09-18 19:27:59 +00:00
meta = {
description = "Web content rendering engine, GTK+ port";
2017-10-26 21:52:37 +00:00
homepage = https://webkitgtk.org/;
2016-09-18 19:27:59 +00:00
license = licenses.bsd2;
2018-06-15 01:46:20 +00:00
platforms = platforms.linux;
2016-09-18 19:27:59 +00:00
hydraPlatforms = [];
maintainers = with maintainers; [ ];
};
src = fetchurl {
url = "https://webkitgtk.org/releases/${name}.tar.xz";
sha256 = "0lbcrw5axwrbrajxq7fqywfyh0djqi23ynzb5wi5ghw2grnp83cl";
2016-09-18 19:27:59 +00:00
};
2018-03-15 00:38:07 +00:00
patches = optionals stdenv.isDarwin [
## TODO add necessary patches for Darwin
];
2016-09-18 19:27:59 +00:00
postPatch = ''
patchShebangs .
'';
2016-10-27 01:23:25 +00:00
cmakeFlags = [
2016-09-18 19:27:59 +00:00
"-DPORT=GTK"
"-DUSE_LIBHYPHEN=0"
2018-03-20 18:36:40 +00:00
"-DENABLE_INTROSPECTION=ON"
]
2017-10-26 21:52:37 +00: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 19:27:59 +00:00
];
nativeBuildInputs = [
2018-03-20 18:36:40 +00:00
cmake ninja perl python2 ruby bison gperf
pkgconfig gettext gobject-introspection
2016-09-18 19:27:59 +00:00
];
2018-03-14 19:15:06 +00:00
buildInputs = [
libintl libwebp enchant2 libnotify gnutls pcre nettle libidn libgcrypt woff2
2019-03-13 20:08:39 +00: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 19:27:59 +00:00
] ++ optional enableGeoLocation geoclue2
2017-10-26 21:52:37 +00:00
++ optional enableGtk2Plugins gtk2
2018-03-25 21:33:23 +00:00
++ (with xorg; [ libXdmcp libXt libXtst libXdamage ])
++ optionals stdenv.isDarwin [ libedit readline libGLU_combined ]
++ optional stdenv.isLinux wayland;
2016-09-18 19:27:59 +00:00
propagatedBuildInputs = [
libsoup gtk3
];
2017-09-25 13:40:41 +00:00
outputs = [ "out" "dev" ];
2016-09-18 19:27:59 +00:00
}