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

46 lines
1.1 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-10-30 23:41:09 +01:00
version = "2.6.2";
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 ];
};
src = fetchurl {
url = "http://webkitgtk.org/releases/${name}.tar.xz";
2014-10-30 23:41:09 +01:00
sha256 = "1f9qm5g1mbjm2hrnlzymas99piws4h4y3yxz4p6f6gavnsvfjwji";
};
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-10-09 12:26:20 +02:00
enableParallelBuilding = true;
}