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

64 lines
1.5 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
2014-10-09 10:26:20 +00:00
, libxml2, libsoup, libsecret, libxslt, harfbuzz
, gst-plugins-base
, withGtk2 ? false
, enableIntrospection ? true
}:
stdenv.mkDerivation rec {
name = "webkitgtk-${version}";
version = "2.4.9";
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 = platforms.linux;
maintainers = [ maintainers.iyzsong ];
};
src = fetchurl {
url = "http://webkitgtk.org/releases/${name}.tar.xz";
sha256 = "0r651ar3p0f8zwl7764kyimxk5hy88cwy116pv8cl5l8hbkjkpxg";
2014-10-09 10:26:20 +00:00
};
CC = "cc";
prePatch = ''
patchShebangs Tools/gtk
'';
patches = [ ./webcore-svg-libxml-cflags.patch ];
2014-10-09 10:26:20 +00:00
configureFlags = with stdenv.lib; [
"--disable-geolocation"
(optionalString enableIntrospection "--enable-introspection")
] ++ stdenv.lib.optional withGtk2 [
"--with-gtk=2.0"
"--disable-webkit2"
];
dontAddDisableDepTrack = true;
nativeBuildInputs = [
perl python ruby bison gperf flex
2014-10-09 10:26:20 +00:00
pkgconfig which gettext gobjectIntrospection
];
buildInputs = [
gtk2 wayland libwebp enchant
libxml2 libsecret libxslt
gst-plugins-base sqlite
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)
];
# Still fails with transient errors in version 2.4.9.
enableParallelBuilding = false;
}