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

103 lines
3.5 KiB
Nix
Raw Normal View History

2016-11-18 13:43:26 +00:00
{ stdenv, fetchurl, perl, python2, ruby, bison, gperf, cmake
2018-03-14 05:21:32 +00:00
, pkgconfig, gettext, gobjectIntrospection, libnotify, gnutls, libgcrypt
2018-03-13 10:16:03 +00:00
, gtk3, wayland, libwebp, enchant, xorg, libxkbcommon, epoxy, at-spi2-core
, libxml2, libsoup, libsecret, libxslt, harfbuzz, libpthreadstubs, pcre, nettle, libtasn1, p11-kit
, libidn, libedit, readline, libGLU_combined, libintlOrEmpty
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}";
2018-03-15 00:38:07 +00:00
version = "2.20.0";
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;
platforms = with platforms; linux ++ darwin;
2016-09-18 19:27:59 +00:00
hydraPlatforms = [];
maintainers = with maintainers; [ ];
};
postConfigure = optionalString stdenv.isDarwin ''
substituteInPlace Source/WebKit2/CMakeFiles/WebKit2.dir/link.txt \
2017-05-25 22:52:10 +00:00
--replace "../../lib/libWTFGTK.a" ""
substituteInPlace Source/JavaScriptCore/CMakeFiles/JavaScriptCore.dir/link.txt \
2017-05-25 22:52:10 +00:00
--replace "../../lib/libbmalloc.a" ""
sed -i "s|[\./]*\.\./lib/lib[^\.]*\.a||g" \
Source/JavaScriptCore/CMakeFiles/LLIntOffsetsExtractor.dir/link.txt \
Source/JavaScriptCore/shell/CMakeFiles/jsc.dir/link.txt \
Source/JavaScriptCore/shell/CMakeFiles/testb3.dir/link.txt \
Source/WebKit2/CMakeFiles/DatabaseProcess.dir/link.txt \
Source/WebKit2/CMakeFiles/NetworkProcess.dir/link.txt \
Source/WebKit2/CMakeFiles/webkit2gtkinjectedbundle.dir/link.txt \
Source/WebKit2/CMakeFiles/WebProcess.dir/link.txt
substituteInPlace Source/JavaScriptCore/CMakeFiles/JavaScriptCore.dir/link.txt \
2017-05-25 22:52:10 +00:00
--replace "../../lib/libWTFGTK.a" "-Wl,-all_load ../../lib/libWTFGTK.a"
'';
2016-09-18 19:27:59 +00:00
src = fetchurl {
url = "http://webkitgtk.org/releases/${name}.tar.xz";
2018-03-15 00:38:07 +00:00
sha256 = "0g0an3pc2yz13gzpaysfgch2yp510gw1qcpk0xr8m6mx43vl1xjp";
2016-09-18 19:27:59 +00:00
};
# see if we can clean this up....
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
2016-10-27 01:23:25 +00:00
cmakeFlags = [
2016-09-18 19:27:59 +00:00
"-DPORT=GTK"
"-DUSE_LIBHYPHEN=0"
]
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_INTROSPECTION=ON"
"-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
];
NIX_CFLAGS_COMPILE = optionalString stdenv.isDarwin " -lintl";
2016-09-18 19:27:59 +00:00
nativeBuildInputs = [
cmake perl python2 ruby bison gperf
2016-09-18 19:27:59 +00:00
pkgconfig gettext gobjectIntrospection
];
buildInputs = libintlOrEmpty ++ [
2018-03-15 00:38:07 +00:00
libwebp enchant libnotify gnutls pcre nettle libidn libgcrypt woff2
libxml2 libsecret libxslt harfbuzz libpthreadstubs libtasn1 p11-kit
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-13 10:16:03 +00:00
++ (with xorg; [ libXdmcp libXt libXtst ])
++ optionals stdenv.isDarwin [ libedit readline libGLU_combined ]
++ optional stdenv.isLinux wayland;
2016-09-18 19:27:59 +00:00
propagatedBuildInputs = [
libsoup gtk3
];
enableParallelBuilding = true;
2017-09-25 13:40:41 +00:00
outputs = [ "out" "dev" ];
2016-09-18 19:27:59 +00:00
}