mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-18 19:26:02 +00:00
46 lines
1.1 KiB
Nix
46 lines
1.1 KiB
Nix
{ stdenv, fetchurl, perl, python, ruby, bison, gperf, cmake
|
|
, pkgconfig, gettext, gobjectIntrospection
|
|
, gtk2, gtk3, wayland, libwebp, enchant
|
|
, libxml2, libsoup, libsecret, libxslt, harfbuzz, libpthreadstubs
|
|
, gst-plugins-base
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "webkitgtk-${version}";
|
|
version = "2.6.1";
|
|
|
|
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 = "0m3ddi3s3998zkfdpcjv738iglh6wx4678vzwwk9rmrdfriacin8";
|
|
};
|
|
|
|
patches = [ ./finding-harfbuzz-icu.patch ];
|
|
|
|
cmakeFlags = [ "-DPORT=GTK" ];
|
|
|
|
nativeBuildInputs = [
|
|
cmake perl python ruby bison gperf
|
|
pkgconfig gettext gobjectIntrospection
|
|
];
|
|
|
|
buildInputs = [
|
|
gtk2 wayland libwebp enchant
|
|
libxml2 libsecret libxslt harfbuzz libpthreadstubs
|
|
gst-plugins-base
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
libsoup gtk3
|
|
];
|
|
|
|
enableParallelBuilding = true;
|
|
}
|