1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-18 19:26:02 +00:00
nixpkgs/pkgs/development/libraries/webkitgtk/default.nix

46 lines
1.1 KiB
Nix
Raw Normal View History

2014-10-09 11:26:20 +01:00
{ stdenv, fetchurl, perl, python, ruby, bison, gperf, cmake
, pkgconfig, gettext, gobjectIntrospection
, gtk2, gtk3, wayland, libwebp, enchant
2014-10-09 11:26:20 +01:00
, libxml2, libsoup, libsecret, libxslt, harfbuzz, libpthreadstubs
, gst-plugins-base
}:
stdenv.mkDerivation rec {
2014-10-09 11:26:20 +01:00
name = "webkitgtk-${version}";
version = "2.6.1";
2014-10-09 11:26:20 +01:00
meta = with stdenv.lib; {
description = "Web content rendering engine, GTK+ port";
homepage = "http://webkitgtk.org/";
2014-10-09 11:26:20 +01:00
license = licenses.bsd2;
platforms = platforms.linux;
maintainers = [ maintainers.iyzsong ];
};
src = fetchurl {
url = "http://webkitgtk.org/releases/${name}.tar.xz";
2014-10-09 11:26:20 +01:00
sha256 = "0m3ddi3s3998zkfdpcjv738iglh6wx4678vzwwk9rmrdfriacin8";
};
2014-10-09 11:26:20 +01:00
patches = [ ./finding-harfbuzz-icu.patch ];
2014-10-09 11:26:20 +01:00
cmakeFlags = [ "-DPORT=GTK" ];
nativeBuildInputs = [
2014-10-09 11:26:20 +01:00
cmake perl python ruby bison gperf
pkgconfig gettext gobjectIntrospection
];
buildInputs = [
gtk2 wayland libwebp enchant
2014-10-09 11:26:20 +01:00
libxml2 libsecret libxslt harfbuzz libpthreadstubs
gst-plugins-base
];
2014-03-27 08:11:56 +00:00
propagatedBuildInputs = [
2014-10-09 11:26:20 +01:00
libsoup gtk3
2014-03-27 08:11:56 +00:00
];
2014-10-09 11:26:20 +01:00
enableParallelBuilding = true;
}