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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

297 lines
6.8 KiB
Nix
Raw Normal View History

{
lib,
clangStdenv,
buildPackages,
runCommand,
2019-12-05 06:13:29 -05:00
fetchurl,
perl,
2019-12-05 06:44:36 -05:00
python3,
2019-12-05 06:13:29 -05:00
ruby,
gi-docgen,
2019-12-05 06:13:29 -05:00
bison,
gperf,
cmake,
ninja,
pkg-config,
2019-12-05 06:13:29 -05:00
gettext,
gobject-introspection,
gnutls,
libgcrypt,
libgpg-error,
2019-12-05 06:13:29 -05:00
gtk3,
wayland,
2022-07-24 06:07:44 +02:00
wayland-protocols,
wayland-scanner,
2019-12-05 06:13:29 -05:00
libwebp,
enchant2,
xorg,
libxkbcommon,
libavif,
libepoxy,
libjxl,
2019-12-05 06:13:29 -05:00
at-spi2-core,
cairo,
2019-12-05 06:13:29 -05:00
libxml2,
libsoup,
libsecret,
libxslt,
harfbuzz,
hyphen,
icu,
libsysprof-capture,
2019-12-05 06:13:29 -05:00
libpthreadstubs,
nettle,
libtasn1,
p11-kit,
libidn,
libedit,
readline,
apple_sdk,
2019-12-05 06:13:29 -05:00
libGL,
libGLU,
2021-04-09 10:50:17 +02:00
mesa,
2019-12-05 06:13:29 -05:00
libintl,
lcms2,
libmanette,
2019-12-05 06:13:29 -05:00
geoclue2,
flite,
fontconfig,
freetype,
openssl,
2019-12-05 06:13:29 -05:00
sqlite,
gst-plugins-base,
gst-plugins-bad,
woff2,
bubblewrap,
libseccomp,
libbacktrace,
systemd,
2019-12-05 06:13:29 -05:00
xdg-dbus-proxy,
substituteAll,
glib,
unifdef,
addDriverRunpath,
enableGeoLocation ? true,
enableExperimental ? false,
withLibsecret ? true,
systemdSupport ? lib.meta.availableOn clangStdenv.hostPlatform systemd,
testers,
2016-09-18 21:27:59 +02:00
}:
# https://webkitgtk.org/2024/10/04/webkitgtk-2.46.html recommends building with clang.
clangStdenv.mkDerivation (finalAttrs: {
pname = "webkitgtk";
version = "2.48.3";
name = "${finalAttrs.pname}-${finalAttrs.version}+abi=${
if lib.versionAtLeast gtk3.version "4.0" then
"6.0"
else
"4.${if lib.versions.major libsoup.version == "2" then "0" else "1"}"
}";
2016-09-18 21:27:59 +02:00
outputs = [
"out"
"dev"
"devdoc"
];
2016-09-18 21:27:59 +02:00
# https://github.com/NixOS/nixpkgs/issues/153528
# Can't be linked within a 4GB address space.
separateDebugInfo = clangStdenv.hostPlatform.isLinux && !clangStdenv.hostPlatform.is32bit;
2016-09-18 21:27:59 +02:00
src = fetchurl {
url = "https://webkitgtk.org/releases/webkitgtk-${finalAttrs.version}.tar.xz";
hash = "sha256-1NxZcPD8alKf9/1nvL+rK7tekb54my6SeWQLMhengsM=";
2016-09-18 21:27:59 +02:00
};
patches = lib.optionals clangStdenv.hostPlatform.isLinux [
(substituteAll {
src = ./fix-bubblewrap-paths.patch;
inherit (builtins) storeDir;
inherit (addDriverRunpath) driverLink;
})
];
2016-09-18 21:27:59 +02:00
preConfigure = lib.optionalString (clangStdenv.hostPlatform != clangStdenv.buildPlatform) ''
# Ignore gettext in cmake_prefix_path so that find_program doesn't
# pick up the wrong gettext. TODO: Find a better solution for
# this, maybe make cmake not look up executables in
# CMAKE_PREFIX_PATH.
cmakeFlags+=" -DCMAKE_IGNORE_PATH=${lib.getBin gettext}/bin"
'';
2016-09-18 21:27:59 +02:00
nativeBuildInputs =
[
2019-12-05 06:13:29 -05:00
bison
cmake
gettext
gobject-introspection
gperf
ninja
perl
2021-05-16 03:39:27 -04:00
perl.pkgs.FileCopyRecursive # used by copy-user-interface-resources.pl
pkg-config
2019-12-05 06:44:36 -05:00
python3
2019-12-05 06:13:29 -05:00
ruby
gi-docgen
glib # for gdbus-codegen
unifdef
]
++ lib.optionals clangStdenv.hostPlatform.isLinux [
wayland-scanner
2016-09-18 21:27:59 +02:00
];
2018-03-14 14:15:06 -05:00
buildInputs =
[
2019-12-05 06:13:29 -05:00
at-spi2-core
cairo # required even when using skia
2019-12-05 06:13:29 -05:00
enchant2
flite
libavif
libepoxy
libjxl
2019-12-05 06:13:29 -05:00
gnutls
gst-plugins-bad
gst-plugins-base
harfbuzz
hyphen
icu
2019-12-05 06:13:29 -05:00
libGL
libGLU
2021-04-09 10:50:17 +02:00
mesa # for libEGL headers
2019-12-05 06:13:29 -05:00
libgcrypt
libgpg-error
2019-12-05 06:13:29 -05:00
libidn
libintl
lcms2
2019-12-05 06:13:29 -05:00
libpthreadstubs
libsysprof-capture
2019-12-05 06:13:29 -05:00
libtasn1
libwebp
libxkbcommon
libxml2
libxslt
libbacktrace
2019-12-05 06:13:29 -05:00
nettle
p11-kit
sqlite
woff2
]
++ lib.optionals clangStdenv.hostPlatform.isBigEndian [
# https://bugs.webkit.org/show_bug.cgi?id=274032
fontconfig
freetype
]
++ lib.optionals clangStdenv.hostPlatform.isDarwin [
2019-12-05 06:13:29 -05:00
libedit
readline
]
++
lib.optional
(
clangStdenv.hostPlatform.isDarwin
&& lib.versionOlder clangStdenv.hostPlatform.darwinSdkVersion "11.0"
)
(
# this can likely be removed as:
# "libproc.h is included in the 10.12 SDK Libsystem and should be identical to this one."
# but the package is marked broken on darwin so unable to test
2021-05-16 03:39:27 -04:00
# Pull a header that contains a definition of proc_pid_rusage().
# (We pick just that one because using the other headers from `sdk` is not
# compatible with our C++ standard library. This header is already in
# the standard library on aarch64)
runCommand "webkitgtk_headers" { } ''
install -Dm444 "${lib.getDev apple_sdk.sdk}"/include/libproc.h "$out"/include/libproc.h
''
)
++ lib.optionals clangStdenv.hostPlatform.isLinux [
2019-12-05 06:13:29 -05:00
libseccomp
libmanette
2019-12-05 06:13:29 -05:00
wayland
xorg.libX11
]
++ lib.optionals systemdSupport [
systemd
]
++ lib.optionals enableGeoLocation [
geoclue2
]
++ lib.optionals enableExperimental [
# For ENABLE_WEB_RTC
openssl
]
++ lib.optionals withLibsecret [
libsecret
2022-07-24 06:07:44 +02:00
]
++ lib.optionals (lib.versionAtLeast gtk3.version "4.0") [
wayland-protocols
];
2016-09-18 21:27:59 +02:00
propagatedBuildInputs = [
2019-12-05 06:13:29 -05:00
gtk3
libsoup
2016-09-18 21:27:59 +02:00
];
cmakeFlags =
let
cmakeBool = x: if x then "ON" else "OFF";
in
[
"-DENABLE_INTROSPECTION=ON"
"-DPORT=GTK"
"-DUSE_SOUP2=${cmakeBool (lib.versions.major libsoup.version == "2")}"
"-DUSE_LIBSECRET=${cmakeBool withLibsecret}"
"-DENABLE_EXPERIMENTAL_FEATURES=${cmakeBool enableExperimental}"
]
++ lib.optionals clangStdenv.hostPlatform.isLinux [
# Have to be explicitly specified when cross.
# https://github.com/WebKit/WebKit/commit/a84036c6d1d66d723f217a4c29eee76f2039a353
"-DBWRAP_EXECUTABLE=${lib.getExe bubblewrap}"
"-DDBUS_PROXY_EXECUTABLE=${lib.getExe xdg-dbus-proxy}"
]
++ lib.optionals clangStdenv.hostPlatform.isDarwin [
"-DENABLE_GAMEPAD=OFF"
"-DENABLE_GTKDOC=OFF"
"-DENABLE_MINIBROWSER=OFF"
"-DENABLE_QUARTZ_TARGET=ON"
"-DENABLE_X11_TARGET=OFF"
"-DUSE_APPLE_ICU=OFF"
"-DUSE_OPENGL_OR_ES=OFF"
]
++ lib.optionals (lib.versionOlder gtk3.version "4.0") [
"-DUSE_GTK4=OFF"
]
++ lib.optionals (!systemdSupport) [
"-DENABLE_JOURNALD_LOG=OFF"
];
2019-12-05 06:13:29 -05:00
postPatch = ''
patchShebangs .
'';
postFixup = ''
# Cannot be in postInstall, otherwise _multioutDocs hook in preFixup will move right back.
moveToOutput "share/doc" "$devdoc"
'';
requiredSystemFeatures = [ "big-parallel" ];
passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage;
meta = with lib; {
2019-12-05 06:13:29 -05:00
description = "Web content rendering engine, GTK port";
mainProgram = "WebKitWebDriver";
homepage = "https://webkitgtk.org/";
2019-12-05 06:13:29 -05:00
license = licenses.bsd2;
pkgConfigModules = [
"javascriptcoregtk-4.0"
"webkit2gtk-4.0"
"webkit2gtk-web-extension-4.0"
];
platforms = platforms.linux ++ platforms.darwin;
maintainers = teams.gnome.members;
broken = clangStdenv.hostPlatform.isDarwin;
2019-12-05 06:13:29 -05:00
};
})