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

94 lines
2.3 KiB
Nix
Raw Normal View History

{ stdenv, fetchurl, perl, python, ruby, bison, gperf, flex
2014-10-09 10:26:20 +00:00
, pkgconfig, which, gettext, gobjectIntrospection
, gtk2, gtk3, wayland, libwebp, enchant, sqlite
, libxml2, libsoup, libsecret, libxslt, harfbuzz, xorg
, gst-plugins-base, libobjc
2014-10-09 10:26:20 +00:00
, withGtk2 ? false
2016-03-29 16:04:46 +00:00
, enableIntrospection ? !stdenv.isDarwin
, enableCredentialStorage ? !stdenv.isDarwin
, readline, libedit
2014-10-09 10:26:20 +00:00
}:
2016-03-29 16:04:46 +00:00
assert stdenv.isDarwin -> !enableIntrospection;
assert stdenv.isDarwin -> !enableCredentialStorage;
with stdenv.lib;
2014-10-09 10:26:20 +00:00
stdenv.mkDerivation rec {
name = "webkitgtk-${version}";
2016-07-15 12:15:13 +00:00
version = "2.4.11";
2014-10-09 10:26:20 +00:00
meta = with stdenv.lib; {
description = "Web content rendering engine, GTK+ port";
homepage = "http://webkitgtk.org/";
license = licenses.bsd2;
platforms = with platforms; linux ++ darwin;
2016-03-13 08:08:15 +00:00
maintainers = [];
2014-10-09 10:26:20 +00:00
};
src = fetchurl {
url = "http://webkitgtk.org/releases/${name}.tar.xz";
2016-07-15 12:15:13 +00:00
sha256 = "1xsvnvyvlywwyf6m9ainpsg87jkxjmd37q6zgz9cxb7v3c2ym2jq";
2014-10-09 10:26:20 +00:00
};
CC = "cc";
prePatch = ''
patchShebangs Tools/gtk
'';
2016-03-29 16:04:46 +00:00
patches = [
./webcore-svg-libxml-cflags.patch
] ++ optionals stdenv.isDarwin [
./configure.patch
2016-03-29 16:04:46 +00:00
./quartz-webcore.patch
./libc++.patch
./plugin-none.patch
];
2014-10-09 10:26:20 +00:00
configureFlags = with stdenv.lib; [
"--disable-geolocation"
2016-07-15 12:15:13 +00:00
"--disable-jit"
# needed for parallel building
"--enable-dependency-tracking"
2014-10-09 10:26:20 +00:00
(optionalString enableIntrospection "--enable-introspection")
2016-03-29 16:04:46 +00:00
] ++ optional withGtk2 [
2014-10-09 10:26:20 +00:00
"--with-gtk=2.0"
2016-03-29 16:04:46 +00:00
] ++ optionals (withGtk2 || stdenv.isDarwin) [
2014-10-09 10:26:20 +00:00
"--disable-webkit2"
2016-03-29 16:04:46 +00:00
] ++ optionals stdenv.isDarwin [
"--disable-x11-target"
"--enable-quartz-target"
"--disable-web-audio"
] ++ optionals (!enableCredentialStorage) [
"--disable-credential-storage"
2014-10-09 10:26:20 +00:00
];
2016-03-29 16:04:46 +00:00
NIX_CFLAGS_COMPILE = "-DU_NOEXCEPT=";
2014-10-09 10:26:20 +00:00
dontAddDisableDepTrack = true;
nativeBuildInputs = [
perl python ruby bison gperf flex
2014-10-09 10:26:20 +00:00
pkgconfig which gettext gobjectIntrospection
];
buildInputs = [
2016-03-29 16:04:46 +00:00
gtk2 libwebp enchant
libxml2 libxslt
gst-plugins-base sqlite xorg.libXt
2016-03-29 16:04:46 +00:00
] ++ optionals enableCredentialStorage [
libsecret
] ++ (if stdenv.isDarwin then [
readline libedit libobjc
2016-03-29 16:04:46 +00:00
] else [
wayland
]);
2014-10-09 10:26:20 +00:00
propagatedBuildInputs = [
libsoup harfbuzz/*icu in *.la*/
2014-10-09 10:26:20 +00:00
(if withGtk2 then gtk2 else gtk3)
];
enableParallelBuilding = true;
}