webkitgtk220x: drop
This commit is contained in:
parent
338b3fd11d
commit
3a3513e7e7
@ -1,4 +1,4 @@
|
|||||||
{ stdenv, fetchFromGitHub, cmake, pkgconfig, gnome3, gmime3, webkitgtk222x
|
{ stdenv, fetchFromGitHub, cmake, pkgconfig, gnome3, gmime3, webkitgtk
|
||||||
, libsass, notmuch, boost, wrapGAppsHook, glib-networking, protobuf, vim_configurable
|
, libsass, notmuch, boost, wrapGAppsHook, glib-networking, protobuf, vim_configurable
|
||||||
, makeWrapper, python3, python3Packages
|
, makeWrapper, python3, python3Packages
|
||||||
, vim ? vim_configurable.override {
|
, vim ? vim_configurable.override {
|
||||||
@ -21,7 +21,7 @@ stdenv.mkDerivation rec {
|
|||||||
|
|
||||||
nativeBuildInputs = [ cmake ronn pkgconfig wrapGAppsHook ];
|
nativeBuildInputs = [ cmake ronn pkgconfig wrapGAppsHook ];
|
||||||
|
|
||||||
buildInputs = [ gnome3.gtkmm gmime3 webkitgtk222x libsass gnome3.libpeas
|
buildInputs = [ gnome3.gtkmm gmime3 webkitgtk libsass gnome3.libpeas
|
||||||
python3 python3Packages.pygobject3
|
python3 python3Packages.pygobject3
|
||||||
notmuch boost gnome3.gsettings-desktop-schemas gnome3.defaultIconTheme
|
notmuch boost gnome3.gsettings-desktop-schemas gnome3.defaultIconTheme
|
||||||
glib-networking protobuf ] ++ (if vim == null then [] else [ vim ]);
|
glib-networking protobuf ] ++ (if vim == null then [] else [ vim ]);
|
||||||
|
@ -1,83 +0,0 @@
|
|||||||
{ stdenv, fetchurl, perl, python2, ruby, bison, gperf, cmake, ninja
|
|
||||||
, pkgconfig, gettext, gobjectIntrospection, libnotify, gnutls, libgcrypt
|
|
||||||
, gtk3, wayland, libwebp, enchant2, xorg, libxkbcommon, epoxy, at-spi2-core
|
|
||||||
, libxml2, libsoup, libsecret, libxslt, harfbuzz, libpthreadstubs, pcre, nettle, libtasn1, p11-kit
|
|
||||||
, libidn, libedit, readline, libGLU_combined, libintl
|
|
||||||
, enableGeoLocation ? true, geoclue2, sqlite
|
|
||||||
, enableGtk2Plugins ? false, gtk2 ? null
|
|
||||||
, gst-plugins-base, gst-plugins-bad, woff2
|
|
||||||
}:
|
|
||||||
|
|
||||||
assert enableGeoLocation -> geoclue2 != null;
|
|
||||||
assert enableGtk2Plugins -> gtk2 != null;
|
|
||||||
assert stdenv.isDarwin -> !enableGtk2Plugins;
|
|
||||||
|
|
||||||
with stdenv.lib;
|
|
||||||
stdenv.mkDerivation rec {
|
|
||||||
name = "webkitgtk-${version}";
|
|
||||||
version = "2.22.4";
|
|
||||||
|
|
||||||
meta = {
|
|
||||||
description = "Web content rendering engine, GTK+ port";
|
|
||||||
homepage = https://webkitgtk.org/;
|
|
||||||
license = licenses.bsd2;
|
|
||||||
platforms = platforms.linux;
|
|
||||||
hydraPlatforms = [];
|
|
||||||
maintainers = with maintainers; [ ];
|
|
||||||
};
|
|
||||||
|
|
||||||
src = fetchurl {
|
|
||||||
url = "https://webkitgtk.org/releases/${name}.tar.xz";
|
|
||||||
sha256 = "1f2335hjzsvjxjf6hy5cyypsn65wykpx2pbk1sp548w0hclbxdgs";
|
|
||||||
};
|
|
||||||
|
|
||||||
patches = optionals stdenv.isDarwin [
|
|
||||||
## TODO add necessary patches for Darwin
|
|
||||||
];
|
|
||||||
|
|
||||||
postPatch = ''
|
|
||||||
patchShebangs .
|
|
||||||
'';
|
|
||||||
|
|
||||||
cmakeFlags = [
|
|
||||||
"-DPORT=GTK"
|
|
||||||
"-DUSE_LIBHYPHEN=0"
|
|
||||||
"-DENABLE_INTROSPECTION=ON"
|
|
||||||
]
|
|
||||||
++ optional (!enableGtk2Plugins) "-DENABLE_PLUGIN_PROCESS_GTK2=OFF"
|
|
||||||
++ optional stdenv.isLinux "-DENABLE_GLES2=ON"
|
|
||||||
++ optionals stdenv.isDarwin [
|
|
||||||
"-DUSE_SYSTEM_MALLOC=ON"
|
|
||||||
"-DUSE_ACCELERATE=0"
|
|
||||||
"-DENABLE_MINIBROWSER=OFF"
|
|
||||||
"-DENABLE_VIDEO=ON"
|
|
||||||
"-DENABLE_QUARTZ_TARGET=ON"
|
|
||||||
"-DENABLE_X11_TARGET=OFF"
|
|
||||||
"-DENABLE_OPENGL=OFF"
|
|
||||||
"-DENABLE_WEB_AUDIO=OFF"
|
|
||||||
"-DENABLE_WEBGL=OFF"
|
|
||||||
"-DENABLE_GRAPHICS_CONTEXT_3D=OFF"
|
|
||||||
"-DENABLE_GTKDOC=OFF"
|
|
||||||
];
|
|
||||||
|
|
||||||
nativeBuildInputs = [
|
|
||||||
cmake ninja perl python2 ruby bison gperf
|
|
||||||
pkgconfig gettext gobjectIntrospection
|
|
||||||
];
|
|
||||||
|
|
||||||
buildInputs = [
|
|
||||||
libintl libwebp enchant2 libnotify gnutls pcre nettle libidn libgcrypt woff2
|
|
||||||
libxml2 libsecret libxslt harfbuzz libpthreadstubs libtasn1 p11-kit
|
|
||||||
sqlite gst-plugins-base gst-plugins-bad libxkbcommon epoxy at-spi2-core
|
|
||||||
] ++ optional enableGeoLocation geoclue2
|
|
||||||
++ optional enableGtk2Plugins gtk2
|
|
||||||
++ (with xorg; [ libXdmcp libXt libXtst libXdamage ])
|
|
||||||
++ optionals stdenv.isDarwin [ libedit readline libGLU_combined ]
|
|
||||||
++ optional stdenv.isLinux wayland;
|
|
||||||
|
|
||||||
propagatedBuildInputs = [
|
|
||||||
libsoup gtk3
|
|
||||||
];
|
|
||||||
|
|
||||||
outputs = [ "out" "dev" ];
|
|
||||||
}
|
|
@ -15,7 +15,7 @@ assert stdenv.isDarwin -> !enableGtk2Plugins;
|
|||||||
with stdenv.lib;
|
with stdenv.lib;
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "webkitgtk-${version}";
|
name = "webkitgtk-${version}";
|
||||||
version = "2.22.2";
|
version = "2.22.4";
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
description = "Web content rendering engine, GTK+ port";
|
description = "Web content rendering engine, GTK+ port";
|
||||||
@ -28,7 +28,7 @@ stdenv.mkDerivation rec {
|
|||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "https://webkitgtk.org/releases/${name}.tar.xz";
|
url = "https://webkitgtk.org/releases/${name}.tar.xz";
|
||||||
sha256 = "1flrbr8pzbrlwv09b4pmgh6vklw7jghd2lgrhcb72vl9s7a8fm1l";
|
sha256 = "1f2335hjzsvjxjf6hy5cyypsn65wykpx2pbk1sp548w0hclbxdgs";
|
||||||
};
|
};
|
||||||
|
|
||||||
patches = optionals stdenv.isDarwin [
|
patches = optionals stdenv.isDarwin [
|
||||||
|
@ -12749,7 +12749,11 @@ with pkgs;
|
|||||||
|
|
||||||
wcslib = callPackage ../development/libraries/wcslib { };
|
wcslib = callPackage ../development/libraries/wcslib { };
|
||||||
|
|
||||||
webkitgtk = webkitgtk220x;
|
webkitgtk = callPackage ../development/libraries/webkitgtk {
|
||||||
|
harfbuzz = harfbuzzFull;
|
||||||
|
inherit (gst_all_1) gst-plugins-base gst-plugins-bad;
|
||||||
|
stdenv = overrideCC stdenv gcc6;
|
||||||
|
};
|
||||||
|
|
||||||
webkitgtk24x-gtk3 = callPackage ../development/libraries/webkitgtk/2.4.nix {
|
webkitgtk24x-gtk3 = callPackage ../development/libraries/webkitgtk/2.4.nix {
|
||||||
harfbuzz = harfbuzzFull.override {
|
harfbuzz = harfbuzzFull.override {
|
||||||
@ -12759,19 +12763,6 @@ with pkgs;
|
|||||||
inherit (darwin) libobjc;
|
inherit (darwin) libobjc;
|
||||||
};
|
};
|
||||||
|
|
||||||
webkitgtk220x = callPackage ../development/libraries/webkitgtk {
|
|
||||||
harfbuzz = harfbuzzFull;
|
|
||||||
inherit (gst_all_1) gst-plugins-base gst-plugins-bad;
|
|
||||||
stdenv = overrideCC stdenv gcc6;
|
|
||||||
};
|
|
||||||
|
|
||||||
webkitgtk222x = callPackage ../development/libraries/webkitgtk/2.22.nix {
|
|
||||||
harfbuzz = harfbuzzFull;
|
|
||||||
inherit (gst_all_1) gst-plugins-base gst-plugins-bad;
|
|
||||||
stdenv = overrideCC stdenv gcc6;
|
|
||||||
};
|
|
||||||
|
|
||||||
|
|
||||||
webkitgtk24x-gtk2 = webkitgtk24x-gtk3.override {
|
webkitgtk24x-gtk2 = webkitgtk24x-gtk3.override {
|
||||||
withGtk2 = true;
|
withGtk2 = true;
|
||||||
enableIntrospection = false;
|
enableIntrospection = false;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user