summaryrefslogtreecommitdiff
path: root/pkgs/development/libraries/webkitgtk/default.nix
diff options
context:
space:
mode:
authorRobin Gloster <mail@glob.in>2021-05-24 09:55:24 -0500
committerRobin Gloster <mail@glob.in>2021-05-24 09:55:24 -0500
commit4bc5fbef9d159e143fb7e2c3231932e6e76f667c (patch)
treee2198f5c552e0667d838b8ec764ddb3a4d8f6dec /pkgs/development/libraries/webkitgtk/default.nix
parentjq: fix build with structured-attrs on darwin (diff)
parentMerge pull request #123802 from superherointj/package-virtmanager-bugfix (diff)
downloadnixpkgs-origin/structured-attrs.tar.gz
Merge remote-tracking branch 'upstream/master' into structured-attrsorigin/structured-attrs
Diffstat (limited to 'pkgs/development/libraries/webkitgtk/default.nix')
-rw-r--r--pkgs/development/libraries/webkitgtk/default.nix39
1 files changed, 24 insertions, 15 deletions
diff --git a/pkgs/development/libraries/webkitgtk/default.nix b/pkgs/development/libraries/webkitgtk/default.nix
index 84a9e2a1db77..f37ba500a227 100644
--- a/pkgs/development/libraries/webkitgtk/default.nix
+++ b/pkgs/development/libraries/webkitgtk/default.nix
@@ -53,15 +53,14 @@
, xdg-dbus-proxy
, substituteAll
, glib
+, addOpenGLRunpath
}:
assert enableGeoLocation -> geoclue2 != null;
-with lib;
-
stdenv.mkDerivation rec {
pname = "webkitgtk";
- version = "2.32.0";
+ version = "2.32.1";
outputs = [ "out" "dev" ];
@@ -69,13 +68,14 @@ stdenv.mkDerivation rec {
src = fetchurl {
url = "https://webkitgtk.org/releases/${pname}-${version}.tar.xz";
- sha256 = "1w3b0w8izp0i070grhv19j631sdcd0mcqnjnax13k8mdx7dg8zcx";
+ sha256 = "05v9hgpkc6mi2klrd8nqql1n8xzq8rgdz3hvyy369xkhgwqifq8k";
};
- patches = optionals stdenv.isLinux [
+ patches = lib.optionals stdenv.isLinux [
(substituteAll {
src = ./fix-bubblewrap-paths.patch;
inherit (builtins) storeDir;
+ inherit (addOpenGLRunpath) driverLink;
})
./libglvnd-headers.patch
];
@@ -85,7 +85,7 @@ stdenv.mkDerivation rec {
# 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=${getBin gettext}/bin"
+ cmakeFlags+=" -DCMAKE_IGNORE_PATH=${lib.getBin gettext}/bin"
'';
nativeBuildInputs = [
@@ -118,7 +118,9 @@ stdenv.mkDerivation rec {
libgcrypt
libidn
libintl
+ ] ++ lib.optionals stdenv.isLinux [
libmanette
+ ] ++ [
libnotify
libpthreadstubs
libsecret
@@ -138,16 +140,16 @@ stdenv.mkDerivation rec {
libXdmcp
libXt
libXtst
- ]) ++ optionals stdenv.isDarwin [
+ ]) ++ lib.optionals stdenv.isDarwin [
libedit
readline
- ] ++ optionals stdenv.isLinux [
+ ] ++ lib.optionals stdenv.isLinux [
bubblewrap
libseccomp
systemd
wayland
xdg-dbus-proxy
- ] ++ optional enableGeoLocation geoclue2;
+ ] ++ lib.optional enableGeoLocation geoclue2;
propagatedBuildInputs = [
gtk3
@@ -159,27 +161,34 @@ stdenv.mkDerivation rec {
"-DPORT=GTK"
"-DUSE_LIBHYPHEN=OFF"
"-DUSE_WPE_RENDERER=OFF"
- ] ++ optionals stdenv.isDarwin [
- "-DENABLE_GRAPHICS_CONTEXT_3D=OFF"
+ ] ++ lib.optionals stdenv.isDarwin [
+ "-DENABLE_GAMEPAD=OFF"
"-DENABLE_GTKDOC=OFF"
"-DENABLE_MINIBROWSER=OFF"
- "-DENABLE_OPENGL=OFF"
"-DENABLE_QUARTZ_TARGET=ON"
"-DENABLE_VIDEO=ON"
"-DENABLE_WEBGL=OFF"
"-DENABLE_WEB_AUDIO=OFF"
"-DENABLE_X11_TARGET=OFF"
- "-DUSE_ACCELERATE=0"
+ "-DUSE_APPLE_ICU=OFF"
+ "-DUSE_OPENGL_OR_ES=OFF"
"-DUSE_SYSTEM_MALLOC=ON"
- ] ++ optional (stdenv.isLinux && enableGLES) "-DENABLE_GLES2=ON";
+ ] ++ lib.optionals (!stdenv.isLinux) [
+ "-DUSE_SYSTEMD=OFF"
+ ] ++ lib.optional (stdenv.isLinux && enableGLES) "-DENABLE_GLES2=ON";
postPatch = ''
patchShebangs .
+ '' + lib.optionalString stdenv.isDarwin ''
+ # It needs malloc_good_size.
+ sed 22i'#include <malloc/malloc.h>' -i Source/WTF/wtf/FastMalloc.h
+ # <CommonCrypto/CommonRandom.h> needs CCCryptorStatus.
+ sed 43i'#include <CommonCrypto/CommonCryptor.h>' -i Source/WTF/wtf/RandomDevice.cpp
'';
requiredSystemFeatures = [ "big-parallel" ];
- meta = {
+ meta = with lib; {
description = "Web content rendering engine, GTK port";
homepage = "https://webkitgtk.org/";
license = licenses.bsd2;