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

48 lines
1.2 KiB
Nix
Raw Normal View History

2014-10-09 12:26:20 +02:00
{ stdenv, fetchurl, perl, python, ruby, bison, gperf, cmake
, pkgconfig, gettext, gobjectIntrospection
, gtk2, gtk3, wayland, libwebp, enchant
2014-10-09 12:26:20 +02:00
, libxml2, libsoup, libsecret, libxslt, harfbuzz, libpthreadstubs
, gst-plugins-base
}:
stdenv.mkDerivation rec {
2014-10-09 12:26:20 +02:00
name = "webkitgtk-${version}";
2014-12-29 11:32:33 +01:00
version = "2.6.4";
2014-10-09 12:26:20 +02:00
meta = with stdenv.lib; {
description = "Web content rendering engine, GTK+ port";
homepage = "http://webkitgtk.org/";
2014-10-09 12:26:20 +02:00
license = licenses.bsd2;
platforms = platforms.linux;
2014-10-30 23:41:09 +01:00
maintainers = with maintainers; [ iyzsong koral ];
};
2014-11-17 23:40:28 +01:00
preConfigure = "patchShebangs Tools";
src = fetchurl {
url = "http://webkitgtk.org/releases/${name}.tar.xz";
2014-12-29 11:32:33 +01:00
sha256 = "16rffxkz4w3sd7w4j3z3dycny8sdqxrz62yq4bgcmffrxlj5xvxy";
};
2014-10-09 12:26:20 +02:00
patches = [ ./finding-harfbuzz-icu.patch ];
2014-10-09 12:26:20 +02:00
cmakeFlags = [ "-DPORT=GTK" ];
nativeBuildInputs = [
2014-10-09 12:26:20 +02:00
cmake perl python ruby bison gperf
pkgconfig gettext gobjectIntrospection
];
buildInputs = [
gtk2 wayland libwebp enchant
2014-10-09 12:26:20 +02:00
libxml2 libsecret libxslt harfbuzz libpthreadstubs
gst-plugins-base
];
2014-03-27 09:11:56 +01:00
propagatedBuildInputs = [
2014-10-09 12:26:20 +02:00
libsoup gtk3
2014-03-27 09:11:56 +01:00
];
2014-11-08 15:55:53 +01:00
# enableParallelBuilding = true; # build problems on Hydra
}