NixOS / nixpkgs

Nix Packages collection & NixOS
MIT License
17.66k stars 13.81k forks source link

Build failure: webkitgtk, missing libdrm #335044

Open mknudsen opened 1 month ago

mknudsen commented 1 month ago

Steps To Reproduce

Steps to reproduce the behavior:

  1. nix-shell -p webkitgtk

Build log

-- Found Libsecret: /nix/store/k1yzx1ykpwmhqvyr0j5fxvs9px7k92m7-glib-2.80.4-dev/include/gio-unix-2.0;/nix/store/k1yzx1ykpwmhqvyr0j5fxvs9px7k92m7-glib-2.80.4-dev/include;/nix/store/k1yzx1ykpwmhqvyr0j5fxvs9px7k92m7-glib-2.80.4-dev/include/glib-2.0;/nix/store/fm2kb8jvvc9s9nhi2gpr3jp6xxjxcvkq-glib-2.80.4/lib/glib-2.0/include;/nix/store/sxxr50x3n5vhxq4valfvzbkdsv1snskv-libsecret-0.21.4-dev/include/libsecret-1
-- Checking for module 'gobject-introspection-1.0'
--   Found gobject-introspection-1.0, version 1.80.1
Package libpcre2-8 was not found in the pkg-config search path.
Perhaps you should add the directory containing `libpcre2-8.pc'
to the PKG_CONFIG_PATH environment variable
Package 'libpcre2-8', required by 'glib-2.0', not found
Package libpcre2-8 was not found in the pkg-config search path.
Perhaps you should add the directory containing `libpcre2-8.pc'
to the PKG_CONFIG_PATH environment variable
Package 'libpcre2-8', required by 'glib-2.0', not found
Package libpcre2-8 was not found in the pkg-config search path.
Perhaps you should add the directory containing `libpcre2-8.pc'
to the PKG_CONFIG_PATH environment variable
Package 'libpcre2-8', required by 'glib-2.0', not found
Package libpcre2-8 was not found in the pkg-config search path.
Perhaps you should add the directory containing `libpcre2-8.pc'
to the PKG_CONFIG_PATH environment variable
Package 'libpcre2-8', required by 'glib-2.0', not found
-- Found GI: /nix/store/r017z7wp1jczmwaszl90lmrxzyqrbdbg-gobject-introspection-1.80.1-dev/bin/g-ir-scanner (found version "1.80.1")
-- Found GIDocgen: /nix/store/2dv4gl8a6ly86z1rd5fn7xcwfbdl3mm7-gi-docgen-2024.1/bin/gi-docgen (found version "2024.1")
-- Could NOT find LibDRM (missing: LibDRM_INCLUDE_DIR LibDRM_LIBRARY) 
CMake Error at Source/cmake/OptionsGTK.cmake:320 (message):
  libdrm is required for USE_LIBDRM
Call Stack (most recent call first):
  Source/cmake/WebKitCommon.cmake:237 (include)
  CMakeLists.txt:21 (include)

-- Configuring incomplete, errors occurred!
error: builder for '/nix/store/wkhf3wmq2s3n7542mm15gvri5win876j-webkitgtk-2.44.2+abi=4.0.drv' failed with exit code 1;
       last 10 log lines:
       > -- Found GIDocgen: /nix/store/2dv4gl8a6ly86z1rd5fn7xcwfbdl3mm7-gi-docgen-2024.1/bin/gi-docgen (found version "2024.1")
       > -- Could NOT find LibDRM (missing: LibDRM_INCLUDE_DIR LibDRM_LIBRARY)
       > CMake Error at Source/cmake/OptionsGTK.cmake:320 (message):
       >   libdrm is required for USE_LIBDRM
       > Call Stack (most recent call first):
       >   Source/cmake/WebKitCommon.cmake:237 (include)
       >   CMakeLists.txt:21 (include)
       >
       > 
       > -- Configuring incomplete, errors occurred!
       For full logs, run 'nix-store -l /nix/store/wkhf3wmq2s3n7542mm15gvri5win876j-webkitgtk-2.44.2+abi=4.0.drv'.

Additional context

Am a nix noob, there was no obvious way for me to disable DRM support and try with that but i'm happy to try things / add more information.

Same error seems to happen if I try to use the webkit based browser surf with nix-shell -p surf

Notify maintainers

@bobby285271 @hedning @jtojnar @dasj19

Metadata

Please run nix-shell -p nix-info --run "nix-info -m" and paste the result.

➜  workspace nix-shell -p nix-info --run "nix-info -m"
these 2 paths will be fetched (0.01 MiB download, 0.10 MiB unpacked):
  /nix/store/06pkgcwpf8q94fvwb21mpkhm5qwpqswy-DarwinTools-1
  /nix/store/rmf7c1pczsq36sl4sh4b5b8qg3cv9097-nix-info
copying path '/nix/store/06pkgcwpf8q94fvwb21mpkhm5qwpqswy-DarwinTools-1' from 'https://cache.nixos.org'...
copying path '/nix/store/rmf7c1pczsq36sl4sh4b5b8qg3cv9097-nix-info' from 'https://cache.nixos.org'...
install: skipping file '/dev/fd/63', as it was replaced while being copied
 - system: `"aarch64-darwin"`
 - host os: `Darwin 23.6.0, macOS 14.6.1`
 - multi-user?: `yes`
 - sandbox: `no`
 - version: `nix-env (Nix) 2.18.5`
 - channels(root): `"nixpkgs"`
 - nixpkgs: `/nix/var/nix/profiles/per-user/root/channels/nixpkgs`

Add a :+1: reaction to issues you find important.

johnhamelink commented 2 days ago

So I'm having this problem when compiling my emacs-overlay package on a Darwin x86_64 machine:

I tried to modify Emacs to fix the underlying webkitgtk dependency, and it allows the dependency to complete configuration, but it still fails:

  my-emacs = (pkgs.emacs-pgtk.overrideAttrs (prev: {
    buildInputs =
      (if pkgs.stdenv.isDarwin
      then (lib.lists.remove pkgs.webkitgtk prev.buildInputs) ++
        [(pkgs.webkitgtk.overrideAttrs (old: {

          # Not strictly needed but cleans up build output
          buildInputs = old.buildInputs ++ (with pkgs; [
            pcre2
            orc
            libpsl
          ]);

          cmakeFlags = (old.cmakeFlags or []) ++ [
            "-DUSE_LIBDRM=OFF"       # Not available on Darwin
            "-DUSE_GSTREAMER_GL=OFF" # Disables WebRTC
          ];

        }))]
      else prev.buildInputs);

  }));
nix-shell -p nix-info --run "nix-info -m"
these 3 paths will be fetched (1.07 MiB download, 6.69 MiB unpacked):
  /nix/store/a481winmsxisw84r2as2p0596v6y654g-DarwinTools-1
  /nix/store/p6pmwvrw9aw4fkn49h8i9vvxmlny6v57-bash-interactive-5.2p32
  /nix/store/qcpv420hm7p9zi73aq6m3jnggl7n47fd-nix-info
copying path '/nix/store/a481winmsxisw84r2as2p0596v6y654g-DarwinTools-1' from 'https://cache.nixos.org'...
copying path '/nix/store/p6pmwvrw9aw4fkn49h8i9vvxmlny6v57-bash-interactive-5.2p32' from 'https://cache.nixos.org'...
copying path '/nix/store/qcpv420hm7p9zi73aq6m3jnggl7n47fd-nix-info' from 'https://cache.nixos.org'...
 - system: `"x86_64-darwin"`
 - host os: `Darwin 23.6.0, macOS 10.16`
 - multi-user?: `yes`
 - sandbox: `no`
 - version: `nix-env (Nix) 2.18.8`
 - channels(root): `""`
 - nixpkgs: `/nix/store/69pq35hpchxskpc48bx3z3giql0ihmij-source`
nix log /nix/store/ncgaybrjnq960r1g5yzrzmcaxklcyxrw-webkitgtk-2.46.0+abi=4.0.drv ``` Running phase: unpackPhase @nix { "action": "setPhase", "phase": "unpackPhase" } unpacking source archive /nix/store/ajsh5sbgfvwkc5s800w0dmyfys1p18m6-webkitgtk-2.46.0.tar.xz source root is webkitgtk-2.46.0 setting SOURCE_DATE_EPOCH to timestamp 1726565277 of file webkitgtk-2.46.0/Source/WebKit/UIProcess/Inspector/WebPageDebuggable.cpp Running phase: patchPhase @nix { "action": "setPhase", "phase": "patchPhase" } patching script interpreter paths in . ./Tools/glib/generate-modern-media-controls-gresource-manifest.py: interpreter directive changed from "#!/usr/bin/env python3" to "/nix/store/ks8acr22s4iggnmvxydm5czl30racy32-python3-3.12.5/bin/python3" ./Tools/glib/generate-pdfjs-resource-manifest.py: interpreter directive changed from "#!/usr/bin/env python3" to "/nix/store/ks8acr22s4iggnmvxydm5czl30racy32-python3-3.12.5/bin/python3" ./Tools/glib/generate-inspector-gresource-manifest.py: interpreter directive changed from "#!/usr/bin/env python3" to "/nix/store/ks8acr22s4iggnmvxydm5czl30racy32-python3-3.12.5/bin/python3" ./Tools/Scripts/rewrite-compile-commands: interpreter directive changed from "#!/usr/bin/env python3" to "/nix/store/ks8acr22s4iggnmvxydm5czl30racy32-python3-3.12.5/bin/python3" ./Tools/gtk/print-screen-size: interpreter directive changed from "#!/usr/bin/env python3" to "/nix/store/ks8acr22s4iggnmvxydm5czl30racy32-python3-3.12.5/bin/python3" ./Tools/gtk/install-dependencies: interpreter directive changed from "#!/usr/bin/env bash" to "/nix/store/gyp8mby6x8fljfm8f942w2mkyjdjk6pc-bash-5.2p32/bin/bash" ./Tools/TestWebKitAPI/Tests/WebKitGLib/resources/generate-test-cert.sh: interpreter directive changed from "#!/bin/sh" to "/nix/store/gyp8mby6x8fljfm8f942w2mkyjdjk6pc-bash-5.2p32/bin/sh" ./Tools/TestWebKitAPI/Scripts/generate-unified-sources.sh: interpreter directive changed from "#!/bin/sh" to "/nix/store/gyp8mby6x8fljfm8f942w2mkyjdjk6pc-bash-5.2p32/bin/sh" ./Tools/TestWebKitAPI/Scripts/check-xcfilelists.sh: interpreter directive changed from "#!/bin/sh" to "/nix/store/gyp8mby6x8fljfm8f942w2mkyjdjk6pc-bash-5.2p32/bin/sh" ./Source/WebKit/WPEPlatform/scripts/update-keysyms-header: interpreter directive changed from "#!/usr/bin/env python3" to "/nix/store/ks8acr22s4iggnmvxydm5czl30racy32-python3-3.12.5/bin/python3" ./Source/WebKit/SwiftOverlay/SwiftOverlay/install-swiftmodules.sh: interpreter directive changed from "#!/bin/sh" to "/nix/store/gyp8mby6x8fljfm8f942w2mkyjdjk6pc-bash-5.2p32/bin/sh" ./Source/WebKit/Scripts/copy-binary-plists.sh: interpreter directive changed from "#!/bin/sh" to "/nix/store/gyp8mby6x8fljfm8f942w2mkyjdjk6pc-bash-5.2p32/bin/sh" ./Source/WebKit/Scripts/generate-unified-sources.sh: interpreter directive changed from "#!/bin/sh" to "/nix/store/gyp8mby6x8fljfm8f942w2mkyjdjk6pc-bash-5.2p32/bin/sh" ./Source/WebKit/Scripts/postprocess-header-rule: interpreter directive changed from "#!/bin/bash" to "/nix/store/gyp8mby6x8fljfm8f942w2mkyjdjk6pc-bash-5.2p32/bin/bash" ./Source/WebKit/Scripts/compile-sandbox.sh: interpreter directive changed from "#!/bin/sh" to "/nix/store/gyp8mby6x8fljfm8f942w2mkyjdjk6pc-bash-5.2p32/bin/sh" ./Source/WebKit/Scripts/check-xcfilelists.sh: interpreter directive changed from "#!/bin/sh" to "/nix/store/gyp8mby6x8fljfm8f942w2mkyjdjk6pc-bash-5.2p32/bin/sh" ./Source/WebKit/Scripts/generate-derived-sources.sh: interpreter directive changed from "#!/bin/sh" to "/nix/store/gyp8mby6x8fljfm8f942w2mkyjdjk6pc-bash-5.2p32/bin/sh" ./Source/WebKit/Scripts/process-entitlements.sh: interpreter directive changed from "#!/bin/bash" to "/nix/store/gyp8mby6x8fljfm8f942w2mkyjdjk6pc-bash-5.2p32/bin/bash" ./Source/WebKit/Scripts/generate-forwarding-headers.pl: interpreter directive changed from "#!/usr/bin/env perl" to "/nix/store/kds6a5pz2qgsncdbci532hhvd56xym1m-perl-5.38.2/bin/perl" ./Source/WebKit/Scripts/copy-webcontent-resources-to-private-headers.sh: interpreter directive changed from "#!/bin/sh" to "/nix/store/gyp8mby6x8fljfm8f942w2mkyjdjk6pc-bash-5.2p32/bin/sh" ./Source/WebKit/Scripts/create-symlink-to-altroot.sh: interpreter directive changed from "#!/bin/sh" to "/nix/store/gyp8mby6x8fljfm8f942w2mkyjdjk6pc-bash-5.2p32/bin/sh" ./Source/WebKit/Scripts/generate-serializers.py: interpreter directive changed from "#!/usr/bin/env python3" to "/nix/store/ks8acr22s4iggnmvxydm5czl30racy32-python3-3.12.5/bin/python3" ./Source/WebKit/Scripts/copy-launchd-plist-and-create-symlink.sh: interpreter directive changed from "#!/bin/sh" to "/nix/store/gyp8mby6x8fljfm8f942w2mkyjdjk6pc-bash-5.2p32/bin/sh" ./Source/JavaScriptCore/inspector/scripts/generate-inspector-protocol-bindings.py: interpreter directive changed from "#!/usr/bin/env python3" to "/nix/store/ks8acr22s4iggnmvxydm5czl30racy32-python3-3.12.5/bin/python3" ./Source/JavaScriptCore/inspector/scripts/codegen/generate_objc_frontend_dispatcher_implementation.py: interpreter directive changed from "#!/usr/bin/env python3" to "/nix/store/ks8acr22s4iggnmvxydm5czl30racy32-python3-3.12.5/bin/python3" ./Source/JavaScriptCore/inspector/scripts/codegen/generate_cpp_protocol_types_header.py: interpreter directive changed from "#!/usr/bin/env python3" to "/nix/store/ks8acr22s4iggnmvxydm5czl30racy32-python3-3.12.5/bin/python3" ./Source/JavaScriptCore/inspector/scripts/codegen/generate_cpp_protocol_types_implementation.py: interpreter directive changed from "#!/usr/bin/env python3" to "/nix/store/ks8acr22s4iggnmvxydm5czl30racy32-python3-3.12.5/bin/python3" ./Source/JavaScriptCore/inspector/scripts/codegen/generate_cpp_backend_dispatcher_header.py: interpreter directive changed from "#!/usr/bin/env python3" to "/nix/store/ks8acr22s4iggnmvxydm5czl30racy32-python3-3.12.5/bin/python3" ./Source/JavaScriptCore/inspector/scripts/codegen/models.py: interpreter directive changed from "#!/usr/bin/env python3" to "/nix/store/ks8acr22s4iggnmvxydm5czl30racy32-python3-3.12.5/bin/python3" ./Source/JavaScriptCore/inspector/scripts/codegen/generate_objc_configuration_implementation.py: interpreter directive changed from "#!/usr/bin/env python3" to "/nix/store/ks8acr22s4iggnmvxydm5czl30racy32-python3-3.12.5/bin/python3" ./Source/JavaScriptCore/inspector/scripts/codegen/generate_objc_header.py: interpreter directive changed from "#!/usr/bin/env python3" to "/nix/store/ks8acr22s4iggnmvxydm5czl30racy32-python3-3.12.5/bin/python3" ./Source/JavaScriptCore/inspector/scripts/codegen/generate_objc_internal_header.py: interpreter directive changed from "#!/usr/bin/env python3" to "/nix/store/ks8acr22s4iggnmvxydm5czl30racy32-python3-3.12.5/bin/python3" ./Source/JavaScriptCore/inspector/scripts/codegen/generate_objc_protocol_types_implementation.py: interpreter directive changed from "#!/usr/bin/env python3" to "/nix/store/ks8acr22s4iggnmvxydm5czl30racy32-python3-3.12.5/bin/python3" ./Source/JavaScriptCore/inspector/scripts/codegen/generate_cpp_backend_dispatcher_implementation.py: interpreter directive changed from "#!/usr/bin/env python3" to "/nix/store/ks8acr22s4iggnmvxydm5czl30racy32-python3-3.12.5/bin/python3" ./Source/JavaScriptCore/inspector/scripts/codegen/objc_generator.py: interpreter directive changed from "#!/usr/bin/env python3" to "/nix/store/ks8acr22s4iggnmvxydm5czl30racy32-python3-3.12.5/bin/python3" ./Source/JavaScriptCore/inspector/scripts/codegen/generate_objc_protocol_type_conversions_header.py: interpreter directive changed from "#!/usr/bin/env python3" to "/nix/store/ks8acr22s4iggnmvxydm5czl30racy32-python3-3.12.5/bin/python3" ./Source/JavaScriptCore/inspector/scripts/codegen/generate_js_backend_commands.py: interpreter directive changed from "#!/usr/bin/env python3" to "/nix/store/ks8acr22s4iggnmvxydm5czl30racy32-python3-3.12.5/bin/python3" ./Source/JavaScriptCore/inspector/scripts/codegen/generator.py: interpreter directive changed from "#!/usr/bin/env python3" to "/nix/store/ks8acr22s4iggnmvxydm5czl30racy32-python3-3.12.5/bin/python3" ./Source/JavaScriptCore/inspector/scripts/codegen/generate_cpp_alternate_backend_dispatcher_header.py: interpreter directive changed from "#!/usr/bin/env python3" to "/nix/store/ks8acr22s4iggnmvxydm5czl30racy32-python3-3.12.5/bin/python3" ./Source/JavaScriptCore/inspector/scripts/codegen/generate_cpp_frontend_dispatcher_header.py: interpreter directive changed from "#!/usr/bin/env python3" to "/nix/store/ks8acr22s4iggnmvxydm5czl30racy32-python3-3.12.5/bin/python3" ./Source/JavaScriptCore/inspector/scripts/codegen/generate_objc_backend_dispatcher_header.py: interpreter directive changed from "#!/usr/bin/env python3" to "/nix/store/ks8acr22s4iggnmvxydm5czl30racy32-python3-3.12.5/bin/python3" ./Source/JavaScriptCore/inspector/scripts/codegen/objc_generator_templates.py: interpreter directive changed from "#!/usr/bin/env python3" to "/nix/store/ks8acr22s4iggnmvxydm5czl30racy32-python3-3.12.5/bin/python3" ./Source/JavaScriptCore/inspector/scripts/codegen/generate_cpp_frontend_dispatcher_implementation.py: interpreter directive changed from "#!/usr/bin/env python3" to "/nix/store/ks8acr22s4iggnmvxydm5czl30racy32-python3-3.12.5/bin/python3" ./Source/JavaScriptCore/inspector/scripts/codegen/generate_objc_configuration_header.py: interpreter directive changed from "#!/usr/bin/env python3" to "/nix/store/ks8acr22s4iggnmvxydm5czl30racy32-python3-3.12.5/bin/python3" ./Source/JavaScriptCore/inspector/scripts/codegen/cpp_generator_templates.py: interpreter directive changed from "#!/usr/bin/env python3" to "/nix/store/ks8acr22s4iggnmvxydm5czl30racy32-python3-3.12.5/bin/python3" ./Source/JavaScriptCore/inspector/scripts/codegen/generate_objc_backend_dispatcher_implementation.py: interpreter directive changed from "#!/usr/bin/env python3" to "/nix/store/ks8acr22s4iggnmvxydm5czl30racy32-python3-3.12.5/bin/python3" ./Source/JavaScriptCore/wasm/generateWasmOMGIRGeneratorInlinesHeader.py: interpreter directive changed from "#!/usr/bin/env python3" to "/nix/store/ks8acr22s4iggnmvxydm5czl30racy32-python3-3.12.5/bin/python3" ./Source/JavaScriptCore/wasm/generateWasm.py: interpreter directive changed from "#!/usr/bin/env python3" to "/nix/store/ks8acr22s4iggnmvxydm5czl30racy32-python3-3.12.5/bin/python3" ./Source/JavaScriptCore/wasm/generateWasmOpsHeader.py: interpreter directive changed from "#!/usr/bin/env python3" to "/nix/store/ks8acr22s4iggnmvxydm5czl30racy32-python3-3.12.5/bin/python3" ./Source/JavaScriptCore/create_hash_table: interpreter directive changed from "#! /usr/bin/env perl" to "/nix/store/kds6a5pz2qgsncdbci532hhvd56xym1m-perl-5.38.2/bin/perl" ./Source/JavaScriptCore/Scripts/postprocess-asm: interpreter directive changed from "#!/usr/bin/env ruby" to "/nix/store/hksac0axpx3savrgmy75rid3smv0d9nj-ruby-3.3.4/bin/ruby" ./Source/JavaScriptCore/Scripts/generate-unified-sources.sh: interpreter directive changed from "#!/bin/sh" to "/nix/store/gyp8mby6x8fljfm8f942w2mkyjdjk6pc-bash-5.2p32/bin/sh" ./Source/JavaScriptCore/Scripts/inline-and-minify-stylesheets-and-scripts.py: interpreter directive changed from "#!/usr/bin/env python3" to "/nix/store/ks8acr22s4iggnmvxydm5czl30racy32-python3-3.12.5/bin/python3" ./Source/JavaScriptCore/Scripts/postprocess-header-rule: interpreter directive changed from "#!/bin/bash" to "/nix/store/gyp8mby6x8fljfm8f942w2mkyjdjk6pc-bash-5.2p32/bin/bash" ./Source/JavaScriptCore/Scripts/resolve-asm-file-conflicts.rb: interpreter directive changed from "#!/usr/bin/env ruby" to "/nix/store/hksac0axpx3savrgmy75rid3smv0d9nj-ruby-3.3.4/bin/ruby" ./Source/JavaScriptCore/Scripts/check-xcfilelists.sh: interpreter directive changed from "#!/bin/sh" to "/nix/store/gyp8mby6x8fljfm8f942w2mkyjdjk6pc-bash-5.2p32/bin/sh" ./Source/JavaScriptCore/Scripts/generate-combined-inspector-json.py: interpreter directive changed from "#!/usr/bin/env python3" to "/nix/store/ks8acr22s4iggnmvxydm5czl30racy32-python3-3.12.5/bin/python3" ./Source/JavaScriptCore/Scripts/generate-derived-sources.sh: interpreter directive changed from "#!/bin/sh" to "/nix/store/gyp8mby6x8fljfm8f942w2mkyjdjk6pc-bash-5.2p32/bin/sh" ./Source/JavaScriptCore/Scripts/make-js-file-arrays.py: interpreter directive changed from "#!/usr/bin/env python3" to "/nix/store/ks8acr22s4iggnmvxydm5czl30racy32-python3-3.12.5/bin/python3" ./Source/JavaScriptCore/Scripts/process-entitlements.sh: interpreter directive changed from "#!/bin/bash" to "/nix/store/gyp8mby6x8fljfm8f942w2mkyjdjk6pc-bash-5.2p32/bin/bash" ./Source/JavaScriptCore/Scripts/copy-profiling-data.sh: interpreter directive changed from "#!/bin/sh -e" to "/nix/store/gyp8mby6x8fljfm8f942w2mkyjdjk6pc-bash-5.2p32/bin/sh -e" ./Source/JavaScriptCore/Scripts/create-symlink-to-altroot.sh: interpreter directive changed from "#!/bin/sh" to "/nix/store/gyp8mby6x8fljfm8f942w2mkyjdjk6pc-bash-5.2p32/bin/sh" ./Source/JavaScriptCore/postprocess-headers.sh: interpreter directive changed from "#!/bin/sh" to "/nix/store/gyp8mby6x8fljfm8f942w2mkyjdjk6pc-bash-5.2p32/bin/sh" ./Source/bmalloc/libpas/test-impl.sh: interpreter directive changed from "#!/bin/sh" to "/nix/store/gyp8mby6x8fljfm8f942w2mkyjdjk6pc-bash-5.2p32/bin/sh" ./Source/bmalloc/libpas/build.sh: interpreter directive changed from "#!/bin/sh" to "/nix/store/gyp8mby6x8fljfm8f942w2mkyjdjk6pc-bash-5.2p32/bin/sh" ./Source/bmalloc/libpas/export.rb: interpreter directive changed from "#!/usr/bin/env ruby" to "/nix/store/hksac0axpx3savrgmy75rid3smv0d9nj-ruby-3.3.4/bin/ruby" ./Source/bmalloc/libpas/build_and_test.sh: interpreter directive changed from "#!/bin/sh" to "/nix/store/gyp8mby6x8fljfm8f942w2mkyjdjk6pc-bash-5.2p32/bin/sh" ./Source/bmalloc/libpas/scripts/tally_verifier_output: interpreter directive changed from "#!/usr/bin/env ruby" to "/nix/store/hksac0axpx3savrgmy75rid3smv0d9nj-ruby-3.3.4/bin/ruby" ./Source/bmalloc/libpas/clean.sh: interpreter directive changed from "#!/bin/sh" to "/nix/store/gyp8mby6x8fljfm8f942w2mkyjdjk6pc-bash-5.2p32/bin/sh" ./Source/bmalloc/libpas/test.sh: interpreter directive changed from "#!/bin/sh" to "/nix/store/gyp8mby6x8fljfm8f942w2mkyjdjk6pc-bash-5.2p32/bin/sh" ./Source/WebGPU/Scripts/create-symlink-to-altroot.sh: interpreter directive changed from "#!/bin/sh" to "/nix/store/gyp8mby6x8fljfm8f942w2mkyjdjk6pc-bash-5.2p32/bin/sh" ./Source/WebInspectorUI/Scripts/remove-console-asserts.pl: interpreter directive changed from "#!/usr/bin/env perl" to "/nix/store/kds6a5pz2qgsncdbci532hhvd56xym1m-perl-5.38.2/bin/perl" ./Source/WebInspectorUI/Scripts/copy-user-interface-resources.pl: interpreter directive changed from "#!/usr/bin/env perl" to "/nix/store/kds6a5pz2qgsncdbci532hhvd56xym1m-perl-5.38.2/bin/perl" ./Source/WebInspectorUI/Scripts/fix-worker-imports-for-optimized-builds.pl: interpreter directive changed from "#!/usr/bin/env perl" to "/nix/store/kds6a5pz2qgsncdbci532hhvd56xym1m-perl-5.38.2/bin/perl" ./Source/WebInspectorUI/Scripts/copy-user-interface-resources-dryrun.rb: interpreter directive changed from "#!/usr/bin/env ruby" to "/nix/store/hksac0axpx3savrgmy75rid3smv0d9nj-ruby-3.3.4/bin/ruby" ./Source/WebInspectorUI/Scripts/combine-resources.pl: interpreter directive changed from "#!/usr/bin/env perl" to "/nix/store/kds6a5pz2qgsncdbci532hhvd56xym1m-perl-5.38.2/bin/perl" ./Source/WebInspectorUI/Scripts/update-codemirror-resources.rb: interpreter directive changed from "#!/usr/bin/env ruby" to "/nix/store/hksac0axpx3savrgmy75rid3smv0d9nj-ruby-3.3.4/bin/ruby" ./Source/WebInspectorUI/Scripts/update-inspector-css-documentation: interpreter directive changed from "#!/usr/bin/env python3" to "/nix/store/ks8acr22s4iggnmvxydm5czl30racy32-python3-3.12.5/bin/python3" ./Source/WebInspectorUI/Scripts/remove-console-asserts-dryrun.rb: interpreter directive changed from "#!/usr/bin/env ruby" to "/nix/store/hksac0axpx3savrgmy75rid3smv0d9nj-ruby-3.3.4/bin/ruby" ./Source/WebInspectorUI/Scripts/update-LegacyInspectorBackendCommands.rb: interpreter directive changed from "#!/usr/bin/env ruby" to "/nix/store/hksac0axpx3savrgmy75rid3smv0d9nj-ruby-3.3.4/bin/ruby" ./Source/WebCore/css/process-css-values.py: interpreter directive changed from "#!/usr/bin/env python3" to "/nix/store/ks8acr22s4iggnmvxydm5czl30racy32-python3-3.12.5/bin/python3" ./Source/WebCore/css/process-css-properties.py: interpreter directive changed from "#!/usr/bin/env python3" to "/nix/store/ks8acr22s4iggnmvxydm5czl30racy32-python3-3.12.5/bin/python3" ./Source/WebCore/css/make-css-file-arrays.pl: interpreter directive changed from "#!/usr/bin/env perl" to "/nix/store/kds6a5pz2qgsncdbci532hhvd56xym1m-perl-5.38.2/bin/perl" ./Source/WebCore/platform/network/create-http-header-name-table: interpreter directive changed from "#!/usr/bin/env python3" to "/nix/store/ks8acr22s4iggnmvxydm5czl30racy32-python3-3.12.5/bin/python3" ./Source/WebCore/html/parser/create-html-entity-table: interpreter directive changed from "#!/usr/bin/env python3" to "/nix/store/ks8acr22s4iggnmvxydm5czl30racy32-python3-3.12.5/bin/python3" ./Source/WebCore/Scripts/generate-unified-sources.sh: interpreter directive changed from "#!/bin/sh" to "/nix/store/gyp8mby6x8fljfm8f942w2mkyjdjk6pc-bash-5.2p32/bin/sh" ./Source/WebCore/Scripts/check-xcfilelists.sh: interpreter directive changed from "#!/bin/sh" to "/nix/store/gyp8mby6x8fljfm8f942w2mkyjdjk6pc-bash-5.2p32/bin/sh" ./Source/WebCore/Scripts/generate-derived-sources.sh: interpreter directive changed from "#!/bin/sh" to "/nix/store/gyp8mby6x8fljfm8f942w2mkyjdjk6pc-bash-5.2p32/bin/sh" ./Source/WebCore/Scripts/create-symlink-to-altroot.sh: interpreter directive changed from "#!/bin/sh" to "/nix/store/gyp8mby6x8fljfm8f942w2mkyjdjk6pc-bash-5.2p32/bin/sh" ./Source/WebCore/Scripts/extract-localizable-strings.pl: interpreter directive changed from "#!/usr/bin/env perl" to "/nix/store/kds6a5pz2qgsncdbci532hhvd56xym1m-perl-5.38.2/bin/perl" ./Source/WebCore/Scripts/GenerateSettings.rb: interpreter directive changed from "#!/usr/bin/env ruby" to "/nix/store/hksac0axpx3savrgmy75rid3smv0d9nj-ruby-3.3.4/bin/ruby" ./Source/WebCore/dom/make_names.pl: interpreter directive changed from "#!/usr/bin/env perl" to "/nix/store/kds6a5pz2qgsncdbci532hhvd56xym1m-perl-5.38.2/bin/perl" ./Source/WebCore/dom/make-event-names.py: interpreter directive changed from "#!/usr/bin/env python3" to "/nix/store/ks8acr22s4iggnmvxydm5czl30racy32-python3-3.12.5/bin/python3" ./Source/WebCore/bindings/scripts/generate-bindings.pl: interpreter directive changed from "#!/usr/bin/env perl" to "/nix/store/kds6a5pz2qgsncdbci532hhvd56xym1m-perl-5.38.2/bin/perl" ./Source/WebCore/bindings/scripts/generate-bindings-all.pl: interpreter directive changed from "#!/usr/bin/env perl" to "/nix/store/kds6a5pz2qgsncdbci532hhvd56xym1m-perl-5.38.2/bin/perl" ./Source/WTF/Scripts/symlink-public-sdk-headers-for-embedded-platforms: interpreter directive changed from "#!/usr/bin/env python3" to "/nix/store/ks8acr22s4iggnmvxydm5czl30racy32-python3-3.12.5/bin/python3" ./Source/WTF/Scripts/GeneratePreferences.rb: interpreter directive changed from "#!/usr/bin/env ruby" to "/nix/store/hksac0axpx3savrgmy75rid3smv0d9nj-ruby-3.3.4/bin/ruby" ./Source/WTF/Scripts/generate-tapi-filelist.py: interpreter directive changed from "#!/usr/bin/env python3" to "/nix/store/ks8acr22s4iggnmvxydm5czl30racy32-python3-3.12.5/bin/python3" ./Source/ThirdParty/ANGLE/tools/flex-bison/update_flex_bison_binaries.py: interpreter directive changed from "#!/usr/bin/python3" to "/nix/store/ks8acr22s4iggnmvxydm5czl30racy32-python3-3.12.5/bin/python3" ./Source/ThirdParty/ANGLE/tools/glslang/update_glslang_binary.py: interpreter directive changed from "#!/usr/bin/python3" to "/nix/store/ks8acr22s4iggnmvxydm5czl30racy32-python3-3.12.5/bin/python3" ./Source/ThirdParty/ANGLE/adjust-angle-include-paths.py: interpreter directive changed from "#!/usr/bin/python3" to "/nix/store/ks8acr22s4iggnmvxydm5czl30racy32-python3-3.12.5/bin/python3" ./Source/ThirdParty/ANGLE/include/platform/gen_features.py: interpreter directive changed from "#! /usr/bin/python3" to "/nix/store/ks8acr22s4iggnmvxydm5czl30racy32-python3-3.12.5/bin/python3" ./Source/ThirdParty/ANGLE/third_party/logdog/get.sh: interpreter directive changed from "#!/bin/bash" to "/nix/store/gyp8mby6x8fljfm8f942w2mkyjdjk6pc-bash-5.2p32/bin/bash" ./Source/ThirdParty/ANGLE/third_party/r8/playground/build.sh: interpreter directive changed from "#!/bin/bash" to "/nix/store/gyp8mby6x8fljfm8f942w2mkyjdjk6pc-bash-5.2p32/bin/bash" ./Source/ThirdParty/ANGLE/android/compress_symbols.py: interpreter directive changed from "#!/usr/bin/env python" to "/nix/store/ks8acr22s4iggnmvxydm5czl30racy32-python3-3.12.5/bin/python" ./Source/ThirdParty/ANGLE/scripts/bootstrap.py: interpreter directive changed from "#!/usr/bin/python3" to "/nix/store/ks8acr22s4iggnmvxydm5czl30racy32-python3-3.12.5/bin/python3" ./Source/ThirdParty/ANGLE/scripts/angle_deqp_bundle.py: interpreter directive changed from "#!/usr/bin/python3" to "/nix/store/ks8acr22s4iggnmvxydm5czl30racy32-python3-3.12.5/bin/python3" ./Source/ThirdParty/ANGLE/scripts/roll_aosp.sh: interpreter directive changed from "#!/bin/bash" to "/nix/store/gyp8mby6x8fljfm8f942w2mkyjdjk6pc-bash-5.2p32/bin/bash" ./Source/ThirdParty/ANGLE/scripts/angle_presubmit_utils_unittest.py: interpreter directive changed from "#!/usr/bin/env python3" to "/nix/store/ks8acr22s4iggnmvxydm5czl30racy32-python3-3.12.5/bin/python3" ./Source/ThirdParty/ANGLE/scripts/update_chrome_angle.py: interpreter directive changed from "#!/usr/bin/python3" to "/nix/store/ks8acr22s4iggnmvxydm5czl30racy32-python3-3.12.5/bin/python3" ./Source/ThirdParty/ANGLE/scripts/gen_angle_gn_info_json.py: interpreter directive changed from "#!/usr/bin/env python" to "/nix/store/ks8acr22s4iggnmvxydm5czl30racy32-python3-3.12.5/bin/python" ./Source/ThirdParty/ANGLE/scripts/generate_entry_points.py: interpreter directive changed from "#!/usr/bin/python3" to "/nix/store/ks8acr22s4iggnmvxydm5czl30racy32-python3-3.12.5/bin/python3" ./Source/ThirdParty/ANGLE/scripts/apply_clang_format_on_all_sources.py: interpreter directive changed from "#!/usr/bin/env python" to "/nix/store/ks8acr22s4iggnmvxydm5czl30racy32-python3-3.12.5/bin/python" ./Source/ThirdParty/ANGLE/scripts/export_targets.py: interpreter directive changed from "#! /usr/bin/env python3" to "/nix/store/ks8acr22s4iggnmvxydm5czl30racy32-python3-3.12.5/bin/python3" ./Source/ThirdParty/ANGLE/scripts/run_code_generation.py: interpreter directive changed from "#!/usr/bin/python3" to "/nix/store/ks8acr22s4iggnmvxydm5czl30racy32-python3-3.12.5/bin/python3" ./Source/ThirdParty/ANGLE/scripts/gen_gl_enum_utils.py: interpreter directive changed from "#!/usr/bin/python3" to "/nix/store/ks8acr22s4iggnmvxydm5czl30racy32-python3-3.12.5/bin/python3" ./Source/ThirdParty/ANGLE/scripts/generate_loader.py: interpreter directive changed from "#!/usr/bin/python3" to "/nix/store/ks8acr22s4iggnmvxydm5czl30racy32-python3-3.12.5/bin/python3" ./Source/ThirdParty/ANGLE/scripts/update_extension_data.py: interpreter directive changed from "#!/usr/bin/python3" to "/nix/store/ks8acr22s4iggnmvxydm5czl30racy32-python3-3.12.5/bin/python3" ./Source/ThirdParty/ANGLE/scripts/roll_chromium_deps.py: interpreter directive changed from "#!/usr/bin/env python3" to "/nix/store/ks8acr22s4iggnmvxydm5czl30racy32-python3-3.12.5/bin/python3" ./Source/ThirdParty/ANGLE/scripts/angle_trace_bundle.py: interpreter directive changed from "#!/usr/bin/python3" to "/nix/store/ks8acr22s4iggnmvxydm5czl30racy32-python3-3.12.5/bin/python3" ./Source/ThirdParty/ANGLE/scripts/trigger.py: interpreter directive changed from "#!/usr/bin/python3" to "/nix/store/ks8acr22s4iggnmvxydm5czl30racy32-python3-3.12.5/bin/python3" ./Source/ThirdParty/ANGLE/adjust-angle-include-paths-rule: interpreter directive changed from "#!/bin/sh" to "/nix/store/gyp8mby6x8fljfm8f942w2mkyjdjk6pc-bash-5.2p32/bin/sh" ./Source/ThirdParty/ANGLE/gni-to-cmake.py: interpreter directive changed from "#!/usr/bin/env python3" to "/nix/store/ks8acr22s4iggnmvxydm5czl30racy32-python3-3.12.5/bin/python3" ./Source/ThirdParty/ANGLE/src/libANGLE/renderer/gen_load_functions_table.py: interpreter directive changed from "#!/usr/bin/python3" to "/nix/store/ks8acr22s4iggnmvxydm5czl30racy32-python3-3.12.5/bin/python3" ./Source/ThirdParty/ANGLE/src/commit_id.py: interpreter directive changed from "#!/usr/bin/env python3" to "/nix/store/ks8acr22s4iggnmvxydm5czl30racy32-python3-3.12.5/bin/python3" ./Source/ThirdParty/ANGLE/src/tests/run_angle_android_test.py: interpreter directive changed from "#! /usr/bin/env python3" to "/nix/store/ks8acr22s4iggnmvxydm5czl30racy32-python3-3.12.5/bin/python3" ./Source/ThirdParty/ANGLE/src/tests/restricted_traces/retrace_restricted_traces.py: interpreter directive changed from "#! /usr/bin/env python3" to "/nix/store/ks8acr22s4iggnmvxydm5czl30racy32-python3-3.12.5/bin/python3" ./Source/ThirdParty/ANGLE/src/tests/restricted_traces/power_denoising.sh: interpreter directive changed from "#!/bin/bash" to "/nix/store/gyp8mby6x8fljfm8f942w2mkyjdjk6pc-bash-5.2p32/bin/bash" ./Source/ThirdParty/ANGLE/src/tests/restricted_traces/sync_restricted_traces_to_cipd.py: interpreter directive changed from "#!/usr/bin/python3" to "/nix/store/ks8acr22s4iggnmvxydm5czl30racy32-python3-3.12.5/bin/python3" ./Source/ThirdParty/ANGLE/src/tests/restricted_traces/gen_restricted_traces.py: interpreter directive changed from "#!/usr/bin/python3" to "/nix/store/ks8acr22s4iggnmvxydm5czl30racy32-python3-3.12.5/bin/python3" ./Source/ThirdParty/ANGLE/src/common/spirv/gen_spirv_builder_and_parser.py: interpreter directive changed from "#!/usr/bin/python3" to "/nix/store/ks8acr22s4iggnmvxydm5czl30racy32-python3-3.12.5/bin/python3" ./Source/ThirdParty/ANGLE/src/program_serialize_data_version.py: interpreter directive changed from "#!/usr/bin/env python3" to "/nix/store/ks8acr22s4iggnmvxydm5czl30racy32-python3-3.12.5/bin/python3" ./Source/ThirdParty/ANGLE/src/compiler/translator/generate_parser.py: interpreter directive changed from "#!/usr/bin/python3" to "/nix/store/ks8acr22s4iggnmvxydm5czl30racy32-python3-3.12.5/bin/python3" ./Source/ThirdParty/ANGLE/src/compiler/preprocessor/generate_parser.py: interpreter directive changed from "#!/usr/bin/python3" to "/nix/store/ks8acr22s4iggnmvxydm5czl30racy32-python3-3.12.5/bin/python3" ./Source/ThirdParty/gtest/xcode/Samples/FrameworkSample/runtests.sh: interpreter directive changed from "#!/bin/bash" to "/nix/store/gyp8mby6x8fljfm8f942w2mkyjdjk6pc-bash-5.2p32/bin/bash" ./Source/ThirdParty/gtest/xcode/Scripts/runtests.sh: interpreter directive changed from "#!/bin/bash" to "/nix/store/gyp8mby6x8fljfm8f942w2mkyjdjk6pc-bash-5.2p32/bin/bash" ./Source/ThirdParty/gtest/test/gtest_xml_output_unittest.py: interpreter directive changed from "#!/usr/bin/env python" to "/nix/store/ks8acr22s4iggnmvxydm5czl30racy32-python3-3.12.5/bin/python" ./Source/ThirdParty/gtest/test/googletest-output-test.py: interpreter directive changed from "#!/usr/bin/env python" to "/nix/store/ks8acr22s4iggnmvxydm5czl30racy32-python3-3.12.5/bin/python" ./Source/ThirdParty/gtest/test/gtest_help_test.py: interpreter directive changed from "#!/usr/bin/env python" to "/nix/store/ks8acr22s4iggnmvxydm5czl30racy32-python3-3.12.5/bin/python" ./Source/ThirdParty/gtest/test/googletest-break-on-failure-unittest.py: interpreter directive changed from "#!/usr/bin/env python" to "/nix/store/ks8acr22s4iggnmvxydm5czl30racy32-python3-3.12.5/bin/python" ./Source/ThirdParty/gtest/test/googletest-setuptestsuite-test.py: interpreter directive changed from "#!/usr/bin/env python" to "/nix/store/ks8acr22s4iggnmvxydm5czl30racy32-python3-3.12.5/bin/python" ./Source/ThirdParty/gtest/test/googletest-list-tests-unittest.py: interpreter directive changed from "#!/usr/bin/env python" to "/nix/store/ks8acr22s4iggnmvxydm5czl30racy32-python3-3.12.5/bin/python" ./Source/ThirdParty/gtest/test/googletest-env-var-test.py: interpreter directive changed from "#!/usr/bin/env python" to "/nix/store/ks8acr22s4iggnmvxydm5czl30racy32-python3-3.12.5/bin/python" ./Source/ThirdParty/gtest/test/gtest_xml_outfiles_test.py: interpreter directive changed from "#!/usr/bin/env python" to "/nix/store/ks8acr22s4iggnmvxydm5czl30racy32-python3-3.12.5/bin/python" ./Source/ThirdParty/gtest/test/googletest-color-test.py: interpreter directive changed from "#!/usr/bin/env python" to "/nix/store/ks8acr22s4iggnmvxydm5czl30racy32-python3-3.12.5/bin/python" ./Source/ThirdParty/gtest/test/googletest-filter-unittest.py: interpreter directive changed from "#!/usr/bin/env python" to "/nix/store/ks8acr22s4iggnmvxydm5czl30racy32-python3-3.12.5/bin/python" ./Source/ThirdParty/gtest/test/gtest_skip_check_output_test.py: interpreter directive changed from "#!/usr/bin/env python" to "/nix/store/ks8acr22s4iggnmvxydm5czl30racy32-python3-3.12.5/bin/python" ./Source/ThirdParty/gtest/test/gtest_testbridge_test.py: interpreter directive changed from "#!/usr/bin/env python" to "/nix/store/ks8acr22s4iggnmvxydm5czl30racy32-python3-3.12.5/bin/python" ./Source/ThirdParty/gtest/test/googletest-throw-on-failure-test.py: interpreter directive changed from "#!/usr/bin/env python" to "/nix/store/ks8acr22s4iggnmvxydm5czl30racy32-python3-3.12.5/bin/python" ./Source/ThirdParty/gtest/test/googletest-shuffle-test.py: interpreter directive changed from "#!/usr/bin/env python" to "/nix/store/ks8acr22s4iggnmvxydm5czl30racy32-python3-3.12.5/bin/python" ./Source/ThirdParty/gtest/test/googletest-uninitialized-test.py: interpreter directive changed from "#!/usr/bin/env python" to "/nix/store/ks8acr22s4iggnmvxydm5czl30racy32-python3-3.12.5/bin/python" ./Source/ThirdParty/gtest/test/googletest-catch-exceptions-test.py: interpreter directive changed from "#!/usr/bin/env python" to "/nix/store/ks8acr22s4iggnmvxydm5czl30racy32-python3-3.12.5/bin/python" ./Source/ThirdParty/gtest/test/gtest_skip_environment_check_output_test.py: interpreter directive changed from "#!/usr/bin/env python" to "/nix/store/ks8acr22s4iggnmvxydm5czl30racy32-python3-3.12.5/bin/python" ./Source/ThirdParty/gtest/test/googletest-failfast-unittest.py: interpreter directive changed from "#!/usr/bin/env python" to "/nix/store/ks8acr22s4iggnmvxydm5czl30racy32-python3-3.12.5/bin/python" Running phase: configurePhase @nix { "action": "setPhase", "phase": "configurePhase" } fixing cmake files... cmake flags: -GNinja -DCMAKE_FIND_USE_SYSTEM_PACKAGE_REGISTRY=OFF -DCMAKE_FIND_USE_PACKAGE_REGISTRY=OFF -DCMAKE_EXPORT_NO_PACKAGE_REGISTRY=ON -DCMAKE_BUILD_TYPE=Release -DBUILD_TESTING=OFF -DCMAKE_INSTALL_LOCALEDIR=/nix/store/c6w2lgmq2aq5ih1lcdh23xapiqvf03sp-webkitgtk-2.46.0+abi=4.0/share/locale -DCMAKE_INSTALL_LIBEXECDIR=/nix/store/c6w2lgmq2aq5ih1lcdh23xapiqvf03sp-webkitgtk-2.46.0+abi=4.0/libexec -DCMAKE_INSTALL_LIBDIR=/nix/store/c6w2lgmq2aq5ih1lcdh23xapiqvf03sp-webkitgtk-2.46.0+abi=4.0/lib -DCMAKE_INSTALL_DOCDIR=/nix/store/c6w2lgmq2aq5ih1lcdh23xapiqvf03sp-webkitgtk-2.46.0+abi=4.0/share/doc/WebKit -DCMAKE_INSTALL_INFODIR=/nix/store/c6w2lgmq2aq5ih1lcdh23xapiqvf03sp-webkitgtk-2.46.0+abi=4.0/share/info -DCMAKE_INSTALL_MANDIR=/nix/store/c6w2lgmq2aq5ih1lcdh23xapiqvf03sp-webkitgtk-2.46.0+abi=4.0/share/man -DCMAKE_INSTALL_OLDINCLUDEDIR=/nix/store/hmzrg4ny4g7j6ipbjya5c7sdnyp24inq-webkitgtk-2.46.0+abi=4.0-dev/include -DCMAKE_INSTALL_INCLUDEDIR=/nix/store/hmzrg4ny4g7j6ipbjya5c7sdnyp24inq-webkitgtk-2.46.0+abi=4.0-dev/include -DCMAKE_INSTALL_SBINDIR=/nix/store/c6w2lgmq2aq5ih1lcdh23xapiqvf03sp-webkitgtk-2.46.0+abi=4.0/sbin -DCMAKE_INSTALL_BINDIR=/nix/store/c6w2lgmq2aq5ih1lcdh23xapiqvf03sp-webkitgtk-2.46.0+abi=4.0/bin -DCMAKE_INSTALL_NAME_DIR=/nix/store/c6w2lgmq2aq5ih1lcdh23xapiqvf03sp-webkitgtk-2.46.0+abi=4.0/lib -DCMAKE_POLICY_DEFAULT_CMP0025=NEW -DCMAKE_OSX_SYSROOT= -DCMAKE_FIND_FRAMEWORK=LAST -DCMAKE_STRIP=/nix/store/kk0zkxvj9k09ra65gg9pzd9mlzykbxps-clang-wrapper-16.0.6/bin/strip -DCMAKE_RANLIB=/nix/store/kk0zkxvj9k09ra65gg9pzd9mlzykbxps-clang-wrapper-16.0.6/bin/ranlib -DCMAKE_AR=/nix/store/kk0zkxvj9k09ra65gg9pzd9mlzykbxps-clang-wrapper-16.0.6/bin/ar -DCMAKE_C_COMPILER=clang -DCMAKE_CXX_COMPILER=clang++ -DCMAKE_INSTALL_PREFIX=/nix/store/c6w2lgmq2aq5ih1lcdh23xapiqvf03sp-webkitgtk-2.46.0+abi=4.0 -DENABLE_INTROSPECTION=ON -DPORT=GTK -DUSE_SOUP2=ON -DUSE_LIBSECRET=ON -DENABLE_EXPERIMENTAL_FEATURES=OFF -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 -DUSE_GTK4=OFF -DENABLE_JOURNALD_LOG=OFF -DUSE_LIBDRM=OFF -DUSE_GSTREAMER_GL=OFF -- The C compiler identification is Clang 16.0.6 -- The CXX compiler identification is Clang 16.0.6 -- Detecting C compiler ABI info -- Detecting C compiler ABI info - done -- Check for working C compiler: /nix/store/kk0zkxvj9k09ra65gg9pzd9mlzykbxps-clang-wrapper-16.0.6/bin/clang - skipped -- Detecting C compile features -- Detecting C compile features - done -- Detecting CXX compiler ABI info -- Detecting CXX compiler ABI info - done -- Check for working CXX compiler: /nix/store/kk0zkxvj9k09ra65gg9pzd9mlzykbxps-clang-wrapper-16.0.6/bin/clang++ - skipped -- Detecting CXX compile features -- Detecting CXX compile features - done -- The CMake build type is: Release -- Found Perl: /nix/store/kds6a5pz2qgsncdbci532hhvd56xym1m-perl-5.38.2/bin/perl (found suitable version "5.38.2", minimum required is "5.10.0") -- Found PerlModules: TRUE found components: English FindBin JSON::PP -- Found Python: /nix/store/ks8acr22s4iggnmvxydm5czl30racy32-python3-3.12.5/bin/python3.12 (found version "3.12.5") found components: Interpreter -- Found Ruby: /nix/store/hksac0axpx3savrgmy75rid3smv0d9nj-ruby-3.3.4/bin/ruby (found suitable version "3.3.4", minimum required is "2.5") -- Enabling ccache: Couldn't find ccache program. Not enabling it. -- Performing Test C_COMPILER_SUPPORTS_-fno-strict-aliasing -- Performing Test C_COMPILER_SUPPORTS_-fno-strict-aliasing - Success -- Performing Test CXX_COMPILER_SUPPORTS_-fno-strict-aliasing -- Performing Test CXX_COMPILER_SUPPORTS_-fno-strict-aliasing - Success -- Performing Test C_COMPILER_SUPPORTS_-fdebug-types-section -- Performing Test C_COMPILER_SUPPORTS_-fdebug-types-section - Failed -- Performing Test CXX_COMPILER_SUPPORTS_-fdebug-types-section -- Performing Test CXX_COMPILER_SUPPORTS_-fdebug-types-section - Failed -- Performing Test C_COMPILER_SUPPORTS_-fno-exceptions -- Performing Test C_COMPILER_SUPPORTS_-fno-exceptions - Success -- Performing Test CXX_COMPILER_SUPPORTS_-fno-exceptions -- Performing Test CXX_COMPILER_SUPPORTS_-fno-exceptions - Success -- Performing Test CXX_COMPILER_SUPPORTS_-fno-rtti -- Performing Test CXX_COMPILER_SUPPORTS_-fno-rtti - Success -- Performing Test CXX_COMPILER_SUPPORTS_-fcoroutines -- Performing Test CXX_COMPILER_SUPPORTS_-fcoroutines - Failed -- Performing Test CXX_COMPILER_SUPPORTS_-fasynchronous-unwind-tables -- Performing Test CXX_COMPILER_SUPPORTS_-fasynchronous-unwind-tables - Success -- Performing Test C_COMPILER_SUPPORTS_-Wno-tautological-compare -- Performing Test C_COMPILER_SUPPORTS_-Wno-tautological-compare - Success -- Performing Test CXX_COMPILER_SUPPORTS_-Wno-tautological-compare -- Performing Test CXX_COMPILER_SUPPORTS_-Wno-tautological-compare - Success -- Performing Test C_COMPILER_SUPPORTS_-Wcast-align -- Performing Test C_COMPILER_SUPPORTS_-Wcast-align - Success -- Performing Test C_COMPILER_SUPPORTS_-Wformat-security -- Performing Test C_COMPILER_SUPPORTS_-Wformat-security - Success -- Performing Test C_COMPILER_SUPPORTS_-Wmissing-format-attribute -- Performing Test C_COMPILER_SUPPORTS_-Wmissing-format-attribute - Success -- Performing Test C_COMPILER_SUPPORTS_-Wpointer-arith -- Performing Test C_COMPILER_SUPPORTS_-Wpointer-arith - Success -- Performing Test C_COMPILER_SUPPORTS_-Wundef -- Performing Test C_COMPILER_SUPPORTS_-Wundef - Success -- Performing Test CXX_COMPILER_SUPPORTS_-Wcast-align -- Performing Test CXX_COMPILER_SUPPORTS_-Wcast-align - Success -- Performing Test CXX_COMPILER_SUPPORTS_-Wformat-security -- Performing Test CXX_COMPILER_SUPPORTS_-Wformat-security - Success -- Performing Test CXX_COMPILER_SUPPORTS_-Wmissing-format-attribute -- Performing Test CXX_COMPILER_SUPPORTS_-Wmissing-format-attribute - Success -- Performing Test CXX_COMPILER_SUPPORTS_-Wpointer-arith -- Performing Test CXX_COMPILER_SUPPORTS_-Wpointer-arith - Success -- Performing Test CXX_COMPILER_SUPPORTS_-Wundef -- Performing Test CXX_COMPILER_SUPPORTS_-Wundef - Success -- Performing Test C_COMPILER_SUPPORTS_-Qunused-arguments -- Performing Test C_COMPILER_SUPPORTS_-Qunused-arguments - Success -- Performing Test C_COMPILER_SUPPORTS_-Wno-maybe-uninitialized -- Performing Test C_COMPILER_SUPPORTS_-Wno-maybe-uninitialized - Failed -- Performing Test C_COMPILER_SUPPORTS_-Wno-parentheses-equality -- Performing Test C_COMPILER_SUPPORTS_-Wno-parentheses-equality - Success -- Performing Test C_COMPILER_SUPPORTS_-Wno-misleading-indentation -- Performing Test C_COMPILER_SUPPORTS_-Wno-misleading-indentation - Success -- Performing Test C_COMPILER_SUPPORTS_-Wno-psabi -- Performing Test C_COMPILER_SUPPORTS_-Wno-psabi - Success -- Performing Test CXX_COMPILER_SUPPORTS_-Qunused-arguments -- Performing Test CXX_COMPILER_SUPPORTS_-Qunused-arguments - Success -- Performing Test CXX_COMPILER_SUPPORTS_-Wno-maybe-uninitialized -- Performing Test CXX_COMPILER_SUPPORTS_-Wno-maybe-uninitialized - Failed -- Performing Test CXX_COMPILER_SUPPORTS_-Wno-parentheses-equality -- Performing Test CXX_COMPILER_SUPPORTS_-Wno-parentheses-equality - Success -- Performing Test CXX_COMPILER_SUPPORTS_-Wno-misleading-indentation -- Performing Test CXX_COMPILER_SUPPORTS_-Wno-misleading-indentation - Success -- Performing Test CXX_COMPILER_SUPPORTS_-Wno-psabi -- Performing Test CXX_COMPILER_SUPPORTS_-Wno-psabi - Success -- Performing Test CXX_COMPILER_SUPPORTS_-Wno-noexcept-type -- Performing Test CXX_COMPILER_SUPPORTS_-Wno-noexcept-type - Success -- Performing Test C_COMPILER_SUPPORTS_-pipe -- Performing Test C_COMPILER_SUPPORTS_-pipe - Success -- Performing Test CXX_COMPILER_SUPPORTS_-pipe -- Performing Test CXX_COMPILER_SUPPORTS_-pipe - Success -- Performing Test C_COMPILER_SUPPORTS_-Wall -- Performing Test C_COMPILER_SUPPORTS_-Wall - Success -- Performing Test C_COMPILER_SUPPORTS_-Wextra -- Performing Test C_COMPILER_SUPPORTS_-Wextra - Success -- Performing Test CXX_COMPILER_SUPPORTS_-Wall -- Performing Test CXX_COMPILER_SUPPORTS_-Wall - Success -- Performing Test CXX_COMPILER_SUPPORTS_-Wextra -- Performing Test CXX_COMPILER_SUPPORTS_-Wextra - Success -- Performing Test C_COMPILER_SUPPORTS_-fcolor-diagnostics -- Performing Test C_COMPILER_SUPPORTS_-fcolor-diagnostics - Success -- Performing Test C_COMPILER_SUPPORTS_-fdiagnostics-color__always -- Performing Test C_COMPILER_SUPPORTS_-fdiagnostics-color__always - Success -- Performing Test CXX_COMPILER_SUPPORTS_-fcolor-diagnostics -- Performing Test CXX_COMPILER_SUPPORTS_-fcolor-diagnostics - Success -- Performing Test CXX_COMPILER_SUPPORTS_-fdiagnostics-color__always -- Performing Test CXX_COMPILER_SUPPORTS_-fdiagnostics-color__always - Success -- Performing Test ATOMICS_ARE_BUILTIN -- Performing Test ATOMICS_ARE_BUILTIN - Success -- Performing Test STD_FILESYSTEM_IS_AVAILABLE -- Performing Test STD_FILESYSTEM_IS_AVAILABLE - Success -- Performing Test HAVE_FLOAT16 -- Performing Test HAVE_FLOAT16 - Success -- Linker variant in use: UNKNOWN -- Linker supports thin archives - FALSE -- Linker supports split debug info - FALSE -- Linker supports --gdb-index - FALSE -- Linker supports --disable-new-dtags - FALSE -- Linker supports --gc-sections - FALSE -- Archiver variant in use: LLVM -- Archiver supports thin archives - TRUE -- Looking for features.h -- Looking for features.h - not found -- Looking for errno.h -- Looking for errno.h - found -- Looking for langinfo.h -- Looking for langinfo.h - found -- Looking for sys/mman.h -- Looking for sys/mman.h - found -- Looking for pthread_np.h -- Looking for pthread_np.h - not found -- Looking for sys/param.h -- Looking for sys/param.h - found -- Looking for sys/time.h -- Looking for sys/time.h - found -- Looking for sys/timeb.h -- Looking for sys/timeb.h - found -- Looking for linux/memfd.h -- Looking for linux/memfd.h - not found -- Looking for _aligned_malloc -- Looking for _aligned_malloc - not found -- Looking for localtime_r -- Looking for localtime_r - found -- Looking for malloc_trim -- Looking for malloc_trim - not found -- Looking for statx -- Looking for statx - not found -- Looking for strnstr -- Looking for strnstr - found -- Looking for timegm -- Looking for timegm - found -- Looking for vasprintf -- Looking for vasprintf - found -- Looking for regexec -- Looking for regexec - found -- Looking for MAP_ALIGNED -- Looking for MAP_ALIGNED - not found -- Looking for SHM_ANON -- Looking for SHM_ANON - not found -- Looking for timingsafe_bcmp -- Looking for timingsafe_bcmp - found -- Looking for SIGTRAP -- Looking for SIGTRAP - found -- Performing Test HAVE_STAT_BIRTHTIME_value -- Performing Test HAVE_STAT_BIRTHTIME_value - Success -- Performing Test HAVE_TM_GMTOFF_value -- Performing Test HAVE_TM_GMTOFF_value - Success -- Performing Test HAVE_TM_ZONE_value -- Performing Test HAVE_TM_ZONE_value - Success -- Looking for sys/types.h -- Looking for sys/types.h - found -- Looking for stdint.h -- Looking for stdint.h - found -- Looking for stddef.h -- Looking for stddef.h - found -- Check size of __int128_t -- Check size of __int128_t - done Package xdmcp was not found in the pkg-config search path. Perhaps you should add the directory containing `xdmcp.pc' to the PKG_CONFIG_PATH environment variable Package 'xdmcp', required by 'xcb', not found Package xdmcp was not found in the pkg-config search path. Perhaps you should add the directory containing `xdmcp.pc' to the PKG_CONFIG_PATH environment variable Package 'xdmcp', required by 'xcb', not found Package xdmcp was not found in the pkg-config search path. Perhaps you should add the directory containing `xdmcp.pc' to the PKG_CONFIG_PATH environment variable Package 'xdmcp', required by 'xcb', not found Package xdmcp was not found in the pkg-config search path. Perhaps you should add the directory containing `xdmcp.pc' to the PKG_CONFIG_PATH environment variable Package 'xdmcp', required by 'xcb', not found -- Found Cairo: /nix/store/dfa9vp06pkxazam1rzbpvicc1g35q5by-cairo-1.18.0/lib/libcairo.dylib (found suitable version "1.18.0", minimum required is "1.16.0") -- Found LibGcrypt: /nix/store/i8qnyrn4w3s4n9hn6l43hzdb1kpx6kv3-libgcrypt-1.10.3-lib/lib/libgcrypt.dylib (found suitable version "1.10.3", minimum required is "1.7.0") -- Found Libtasn1: /nix/store/s6im1rqd6csizh1bwc3v50kxrp7ky6k1-libtasn1-4.19.0/lib/libtasn1.dylib Package libpcre2-8 was not found in the pkg-config search path. Perhaps you should add the directory containing `libpcre2-8.pc' to the PKG_CONFIG_PATH environment variable Package 'libpcre2-8', required by 'glib-2.0', not found Package libpcre2-8 was not found in the pkg-config search path. Perhaps you should add the directory containing `libpcre2-8.pc' to the PKG_CONFIG_PATH environment variable Package 'libpcre2-8', required by 'glib-2.0', not found Package libpcre2-8 was not found in the pkg-config search path. Perhaps you should add the directory containing `libpcre2-8.pc' to the PKG_CONFIG_PATH environment variable Package 'libpcre2-8', required by 'glib-2.0', not found Package libpcre2-8 was not found in the pkg-config search path. Perhaps you should add the directory containing `libpcre2-8.pc' to the PKG_CONFIG_PATH environment variable Package 'libpcre2-8', required by 'glib-2.0', not found Package libpcre2-8 was not found in the pkg-config search path. Perhaps you should add the directory containing `libpcre2-8.pc' to the PKG_CONFIG_PATH environment variable Package 'libpcre2-8', required by 'glib-2.0', not found Package libpcre2-8 was not found in the pkg-config search path. Perhaps you should add the directory containing `libpcre2-8.pc' to the PKG_CONFIG_PATH environment variable Package 'libpcre2-8', required by 'glib-2.0', not found Package libpcre2-8 was not found in the pkg-config search path. Perhaps you should add the directory containing `libpcre2-8.pc' to the PKG_CONFIG_PATH environment variable Package 'libpcre2-8', required by 'glib-2.0', not found Package libpcre2-8 was not found in the pkg-config search path. Perhaps you should add the directory containing `libpcre2-8.pc' to the PKG_CONFIG_PATH environment variable Package 'libpcre2-8', required by 'glib-2.0', not found -- Found hb-features.h -- Found the following HarfBuzz libraries: -- HarfBuzz (required): /nix/store/p0pqsdv0nby1w989vphdqcyhwzhk7xc3-harfbuzz-9.0.0/lib/libharfbuzz.dylib -- ICU (required): /nix/store/01zcalccqrpzfnybq2sf59qq914af9rx-harfbuzz-icu-9.0.0/lib/libharfbuzz-icu.dylib -- Found HarfBuzz: /nix/store/6nhqc3s95shzym6mjijbiw4psp3lbzz8-harfbuzz-icu-9.0.0-dev/include/harfbuzz (found suitable version "9.0.0", minimum required is "1.4.2") -- Found the following ICU libraries: -- data (required): /nix/store/yagla1k4xppvc4ffrj1i2j2glhkxhc8v-icu4c-74.2/lib/libicudata.dylib -- i18n (required): /nix/store/yagla1k4xppvc4ffrj1i2j2glhkxhc8v-icu4c-74.2/lib/libicui18n.dylib -- uc (required): /nix/store/yagla1k4xppvc4ffrj1i2j2glhkxhc8v-icu4c-74.2/lib/libicuuc.dylib -- Found ICU: /nix/store/2yk0hc97gdx0w71dk78ab1j8wx2219vc-icu4c-74.2-dev/include (found suitable version "74.2", minimum required is "61.2") -- Found JPEG: /nix/store/xxzn9wi8hsqzwr1dhdhaqzxyipr024qz-libjpeg-turbo-3.0.3/lib/libjpeg.dylib (found version "62") -- Found Epoxy: /nix/store/9ic124kycpv9bjxj4yps3fcg6naas5hg-libepoxy-1.5.10/lib/libepoxy.dylib (found suitable version "1.5.10", minimum required is "1.5.4") -- Found LibXml2: /nix/store/ac73mddfvraxgvd816r9h57df35mm6gd-libxml2-2.13.3/lib/libxml2.dylib (found suitable version "2.13.3", minimum required is "2.8.0") -- Found ZLIB: /nix/store/5z9nsxwrvq8pb8rn47ypx81cqd0s3dr9-zlib-1.3.1/lib/libz.dylib (found version "1.3.1") -- Found PNG: /nix/store/9iwq0zlzq2yc325a2sq08szikc7yv059-libpng-apng-1.6.43/lib/libpng.dylib (found version "1.6.43") -- Found SQLite3: /nix/store/39a9k44q8wm92ggv6ar5drf3p53lcjxm-sqlite-3.46.0-dev/include (found version "3.46.0") -- Performing Test CMAKE_HAVE_LIBC_PTHREAD -- Performing Test CMAKE_HAVE_LIBC_PTHREAD - Success -- Found Threads: TRUE -- Found Unifdef: /nix/store/cingplaj26m35d7pbb1v9c9614bw6aj4-unifdef-2.12/bin/unifdef -- Found the following WebP libraries: -- WebP (required): /nix/store/5q5sz1a77i9jrw6dhzr3zr48frr2zzdz-libwebp-1.4.0/lib/libwebp.dylib -- demux (required): /nix/store/5q5sz1a77i9jrw6dhzr3zr48frr2zzdz-libwebp-1.4.0/lib/libwebpdemux.dylib -- Found WebP: /nix/store/5q5sz1a77i9jrw6dhzr3zr48frr2zzdz-libwebp-1.4.0/include -- Checking for module 'atspi-2' -- Found atspi-2, version 2.52.0 Package libpcre2-8 was not found in the pkg-config search path. Perhaps you should add the directory containing `libpcre2-8.pc' to the PKG_CONFIG_PATH environment variable Package 'libpcre2-8', required by 'glib-2.0', not found Package libpcre2-8 was not found in the pkg-config search path. Perhaps you should add the directory containing `libpcre2-8.pc' to the PKG_CONFIG_PATH environment variable Package 'libpcre2-8', required by 'glib-2.0', not found Package libpcre2-8 was not found in the pkg-config search path. Perhaps you should add the directory containing `libpcre2-8.pc' to the PKG_CONFIG_PATH environment variable Package 'libpcre2-8', required by 'glib-2.0', not found Package libpcre2-8 was not found in the pkg-config search path. Perhaps you should add the directory containing `libpcre2-8.pc' to the PKG_CONFIG_PATH environment variable Package 'libpcre2-8', required by 'glib-2.0', not found -- Found ATSPI: /nix/store/w4dv135f96h7kmfimr4416c95x7had1f-glib-2.80.4-dev/include/glib-2.0;/nix/store/3ndkqvvrxbz0v5mcsmf9yxwkfx4varp6-glib-2.80.4/lib/glib-2.0/include;/nix/store/9xb76w97wgvss0610w2l01rhkd08gkn6-at-spi2-core-2.52.0-dev/include/at-spi-2.0;/nix/store/lzld7q2iq8vd3gr7l6plk5j2sspxa76a-dbus-1.14.10-dev/include/dbus-1.0;/nix/store/a1k6zy847g58dmcnil2rip13xmkqpcls-dbus-1.14.10-lib/lib/dbus-1.0/include (Required is at least version "2.5.3") -- Found glib-compile-resources (required): /nix/store/w4dv135f96h7kmfimr4416c95x7had1f-glib-2.80.4-dev/bin/glib-compile-resources (2.80.4) -- Disabling USE_GBM since USE_LIBDRM is disabled. -- Disabling USE_GSTREAMER_WEBRTC since ENABLE_WEB_RTC is disabled. -- Checking for module 'gtk+-3.0' -- Found gtk+-3.0, version 3.24.43 Package libpcre2-8 was not found in the pkg-config search path. Perhaps you should add the directory containing `libpcre2-8.pc' to the PKG_CONFIG_PATH environment variable Package 'libpcre2-8', required by 'glib-2.0', not found Package libpcre2-8 was not found in the pkg-config search path. Perhaps you should add the directory containing `libpcre2-8.pc' to the PKG_CONFIG_PATH environment variable Package 'libpcre2-8', required by 'glib-2.0', not found Package libpcre2-8 was not found in the pkg-config search path. Perhaps you should add the directory containing `libpcre2-8.pc' to the PKG_CONFIG_PATH environment variable Package 'libpcre2-8', required by 'glib-2.0', not found Package libpcre2-8 was not found in the pkg-config search path. Perhaps you should add the directory containing `libpcre2-8.pc' to the PKG_CONFIG_PATH environment variable Package 'libpcre2-8', required by 'glib-2.0', not found -- Checking for module 'gtk+-unix-print-3.0' -- Found gtk+-unix-print-3.0, version 3.24.43 Package libpcre2-8 was not found in the pkg-config search path. Perhaps you should add the directory containing `libpcre2-8.pc' to the PKG_CONFIG_PATH environment variable Package 'libpcre2-8', required by 'glib-2.0', not found Package libpcre2-8 was not found in the pkg-config search path. Perhaps you should add the directory containing `libpcre2-8.pc' to the PKG_CONFIG_PATH environment variable Package 'libpcre2-8', required by 'glib-2.0', not found Package libpcre2-8 was not found in the pkg-config search path. Perhaps you should add the directory containing `libpcre2-8.pc' to the PKG_CONFIG_PATH environment variable Package 'libpcre2-8', required by 'glib-2.0', not found Package libpcre2-8 was not found in the pkg-config search path. Perhaps you should add the directory containing `libpcre2-8.pc' to the PKG_CONFIG_PATH environment variable Package 'libpcre2-8', required by 'glib-2.0', not found -- Found GTK: 3.24.43 (Required is at least version "3.22.0") Package libpcre2-8 was not found in the pkg-config search path. Perhaps you should add the directory containing `libpcre2-8.pc' to the PKG_CONFIG_PATH environment variable Package 'libpcre2-8', required by 'glib-2.0', not found Package libpcre2-8 was not found in the pkg-config search path. Perhaps you should add the directory containing `libpcre2-8.pc' to the PKG_CONFIG_PATH environment variable Package 'libpcre2-8', required by 'glib-2.0', not found Package libpcre2-8 was not found in the pkg-config search path. Perhaps you should add the directory containing `libpcre2-8.pc' to the PKG_CONFIG_PATH environment variable Package 'libpcre2-8', required by 'glib-2.0', not found Package libpcre2-8 was not found in the pkg-config search path. Perhaps you should add the directory containing `libpcre2-8.pc' to the PKG_CONFIG_PATH environment variable Package 'libpcre2-8', required by 'glib-2.0', not found -- Found LibSoup: /nix/store/gw8drf4m7idlcwvybyqsz4r2fpd44nrs-libsoup-2.74.3-dev/include/libsoup-2.4 (found suitable version "2.74.3", minimum required is "2.54.0") Package libpcre2-8 was not found in the pkg-config search path. Perhaps you should add the directory containing `libpcre2-8.pc' to the PKG_CONFIG_PATH environment variable Package 'libpcre2-8', required by 'glib-2.0', not found Package libpcre2-8 was not found in the pkg-config search path. Perhaps you should add the directory containing `libpcre2-8.pc' to the PKG_CONFIG_PATH environment variable Package 'libpcre2-8', required by 'glib-2.0', not found Package libpcre2-8 was not found in the pkg-config search path. Perhaps you should add the directory containing `libpcre2-8.pc' to the PKG_CONFIG_PATH environment variable Package 'libpcre2-8', required by 'glib-2.0', not found Package libpcre2-8 was not found in the pkg-config search path. Perhaps you should add the directory containing `libpcre2-8.pc' to the PKG_CONFIG_PATH environment variable Package 'libpcre2-8', required by 'glib-2.0', not found Package libpcre2-8 was not found in the pkg-config search path. Perhaps you should add the directory containing `libpcre2-8.pc' to the PKG_CONFIG_PATH environment variable Package 'libpcre2-8', required by 'glib-2.0', not found Package libpcre2-8 was not found in the pkg-config search path. Perhaps you should add the directory containing `libpcre2-8.pc' to the PKG_CONFIG_PATH environment variable Package 'libpcre2-8', required by 'glib-2.0', not found Package libpcre2-8 was not found in the pkg-config search path. Perhaps you should add the directory containing `libpcre2-8.pc' to the PKG_CONFIG_PATH environment variable Package 'libpcre2-8', required by 'glib-2.0', not found Package libpcre2-8 was not found in the pkg-config search path. Perhaps you should add the directory containing `libpcre2-8.pc' to the PKG_CONFIG_PATH environment variable Package 'libpcre2-8', required by 'glib-2.0', not found -- Found GLIB: /nix/store/w4dv135f96h7kmfimr4416c95x7had1f-glib-2.80.4-dev/include/glib-2.0;/nix/store/3ndkqvvrxbz0v5mcsmf9yxwkfx4varp6-glib-2.80.4/lib/glib-2.0/include (found suitable version "2.80.4", minimum required is "2.56.4") -- Found LibXslt: /nix/store/dbkahwnhn6dc10x5hi72k7svfhyqwka6-libxslt-1.1.42/lib/libxslt.dylib (found suitable version "1.1.42", minimum required is "1.1.7") -- Checking for module 'libsecret-1' -- Found libsecret-1, version 0.21.4 Package libpcre2-8 was not found in the pkg-config search path. Perhaps you should add the directory containing `libpcre2-8.pc' to the PKG_CONFIG_PATH environment variable Package 'libpcre2-8', required by 'glib-2.0', not found Package libpcre2-8 was not found in the pkg-config search path. Perhaps you should add the directory containing `libpcre2-8.pc' to the PKG_CONFIG_PATH environment variable Package 'libpcre2-8', required by 'glib-2.0', not found Package libpcre2-8 was not found in the pkg-config search path. Perhaps you should add the directory containing `libpcre2-8.pc' to the PKG_CONFIG_PATH environment variable Package 'libpcre2-8', required by 'glib-2.0', not found Package libpcre2-8 was not found in the pkg-config search path. Perhaps you should add the directory containing `libpcre2-8.pc' to the PKG_CONFIG_PATH environment variable Package 'libpcre2-8', required by 'glib-2.0', not found -- Found Libsecret: /nix/store/w4dv135f96h7kmfimr4416c95x7had1f-glib-2.80.4-dev/include/gio-unix-2.0;/nix/store/w4dv135f96h7kmfimr4416c95x7had1f-glib-2.80.4-dev/include;/nix/store/w4dv135f96h7kmfimr4416c95x7had1f-glib-2.80.4-dev/include/glib-2.0;/nix/store/3ndkqvvrxbz0v5mcsmf9yxwkfx4varp6-glib-2.80.4/lib/glib-2.0/include;/nix/store/m30dvcw9gnwqz6wa5qcvz54wfwj5xq97-libsecret-0.21.4-dev/include/libsecret-1 -- Checking for module 'gobject-introspection-1.0' -- Found gobject-introspection-1.0, version 1.80.1 Package libpcre2-8 was not found in the pkg-config search path. Perhaps you should add the directory containing `libpcre2-8.pc' to the PKG_CONFIG_PATH environment variable Package 'libpcre2-8', required by 'glib-2.0', not found Package libpcre2-8 was not found in the pkg-config search path. Perhaps you should add the directory containing `libpcre2-8.pc' to the PKG_CONFIG_PATH environment variable Package 'libpcre2-8', required by 'glib-2.0', not found Package libpcre2-8 was not found in the pkg-config search path. Perhaps you should add the directory containing `libpcre2-8.pc' to the PKG_CONFIG_PATH environment variable Package 'libpcre2-8', required by 'glib-2.0', not found Package libpcre2-8 was not found in the pkg-config search path. Perhaps you should add the directory containing `libpcre2-8.pc' to the PKG_CONFIG_PATH environment variable Package 'libpcre2-8', required by 'glib-2.0', not found -- Found GI: /nix/store/2kvcxzh7k67q1lzdrzgw59hxz19jhpwp-gobject-introspection-1.80.1-dev/bin/g-ir-scanner (found version "1.80.1") -- Found GIDocgen: /nix/store/gfw7f07p0888np7g2mw4wwbzd4ly6sa7-gi-docgen-2024.1/bin/gi-docgen (found version "2024.1") -- Checking for module 'enchant-2' -- Found enchant-2, version 2.6.9 Package libpcre2-8 was not found in the pkg-config search path. Perhaps you should add the directory containing `libpcre2-8.pc' to the PKG_CONFIG_PATH environment variable Package 'libpcre2-8', required by 'glib-2.0', not found Package libpcre2-8 was not found in the pkg-config search path. Perhaps you should add the directory containing `libpcre2-8.pc' to the PKG_CONFIG_PATH environment variable Package 'libpcre2-8', required by 'glib-2.0', not found Package libpcre2-8 was not found in the pkg-config search path. Perhaps you should add the directory containing `libpcre2-8.pc' to the PKG_CONFIG_PATH environment variable Package 'libpcre2-8', required by 'glib-2.0', not found Package libpcre2-8 was not found in the pkg-config search path. Perhaps you should add the directory containing `libpcre2-8.pc' to the PKG_CONFIG_PATH environment variable Package 'libpcre2-8', required by 'glib-2.0', not found -- Found JPEGXL: /nix/store/5fii6rkraj371sgh7gb0c7qmbrrdnsjs-libjxl-0.10.3/lib/libjxl.dylib (found suitable version "0.10.3", minimum required is "0.7.0") -- Found Hyphen: /nix/store/q3lcfc06n9pbpd5zrqckf9ca6jkakniq-hyphen-2.8.8/include -- Found the following WOFF2 libraries: -- WOFF2 (required): /nix/store/kmgx2yg6vm99qfkabcnrklsj8d0jnckb-woff2-1.0.2-lib/lib/libwoff2common.dylib -- dec (required): /nix/store/kmgx2yg6vm99qfkabcnrklsj8d0jnckb-woff2-1.0.2-lib/lib/libwoff2dec.dylib -- Found WOFF2: /nix/store/kmgx2yg6vm99qfkabcnrklsj8d0jnckb-woff2-1.0.2-lib/lib/libwoff2common.dylib (found suitable version "1.0.2", minimum required is "1.0.2") -- Found AVIF: /nix/store/4mn2r3hlnmjwrjlc3d6k815lp9y8kmkh-libavif-1.1.0/include/avif (found suitable version "1.1.0", minimum required is "0.9.0") -- Found LCMS2: /nix/store/6y7hv83p59ls9x1xn09xfivb6ww07z2d-lcms2-2.16/lib/liblcms2.dylib (found version "2.16") -- Found LibBacktrace: /nix/store/b84lfcmv4bgvb63vkx6wfprak0idkax5-libbacktrace-0-unstable-2024-03-02/include -- Checking for module 'gstreamer-1.0 >= 1.18.4' -- Found gstreamer-1.0, version 1.24.3 Package libpcre2-8 was not found in the pkg-config search path. Perhaps you should add the directory containing `libpcre2-8.pc' to the PKG_CONFIG_PATH environment variable Package 'libpcre2-8', required by 'glib-2.0', not found Package libpcre2-8 was not found in the pkg-config search path. Perhaps you should add the directory containing `libpcre2-8.pc' to the PKG_CONFIG_PATH environment variable Package 'libpcre2-8', required by 'glib-2.0', not found Package libpcre2-8 was not found in the pkg-config search path. Perhaps you should add the directory containing `libpcre2-8.pc' to the PKG_CONFIG_PATH environment variable Package 'libpcre2-8', required by 'glib-2.0', not found Package libpcre2-8 was not found in the pkg-config search path. Perhaps you should add the directory containing `libpcre2-8.pc' to the PKG_CONFIG_PATH environment variable Package 'libpcre2-8', required by 'glib-2.0', not found -- Checking for module 'gstreamer-base-1.0 >= 1.18.4' -- Found gstreamer-base-1.0, version 1.24.3 Package libpcre2-8 was not found in the pkg-config search path. Perhaps you should add the directory containing `libpcre2-8.pc' to the PKG_CONFIG_PATH environment variable Package 'libpcre2-8', required by 'glib-2.0', not found Package libpcre2-8 was not found in the pkg-config search path. Perhaps you should add the directory containing `libpcre2-8.pc' to the PKG_CONFIG_PATH environment variable Package 'libpcre2-8', required by 'glib-2.0', not found Package libpcre2-8 was not found in the pkg-config search path. Perhaps you should add the directory containing `libpcre2-8.pc' to the PKG_CONFIG_PATH environment variable Package 'libpcre2-8', required by 'glib-2.0', not found Package libpcre2-8 was not found in the pkg-config search path. Perhaps you should add the directory containing `libpcre2-8.pc' to the PKG_CONFIG_PATH environment variable Package 'libpcre2-8', required by 'glib-2.0', not found -- Checking for module 'gstreamer-full-1.0>=1.17.0' -- No package 'gstreamer-full-1.0' found -- Checking for module 'gstreamer-allocators-1.0 >= 1.18.4' -- Found gstreamer-allocators-1.0, version 1.24.3 Package libpcre2-8 was not found in the pkg-config search path. Perhaps you should add the directory containing `libpcre2-8.pc' to the PKG_CONFIG_PATH environment variable Package 'libpcre2-8', required by 'glib-2.0', not found Package libpcre2-8 was not found in the pkg-config search path. Perhaps you should add the directory containing `libpcre2-8.pc' to the PKG_CONFIG_PATH environment variable Package 'libpcre2-8', required by 'glib-2.0', not found Package libpcre2-8 was not found in the pkg-config search path. Perhaps you should add the directory containing `libpcre2-8.pc' to the PKG_CONFIG_PATH environment variable Package 'libpcre2-8', required by 'glib-2.0', not found Package libpcre2-8 was not found in the pkg-config search path. Perhaps you should add the directory containing `libpcre2-8.pc' to the PKG_CONFIG_PATH environment variable Package 'libpcre2-8', required by 'glib-2.0', not found -- Checking for module 'gstreamer-app-1.0 >= 1.18.4' -- Found gstreamer-app-1.0, version 1.24.3 Package libpcre2-8 was not found in the pkg-config search path. Perhaps you should add the directory containing `libpcre2-8.pc' to the PKG_CONFIG_PATH environment variable Package 'libpcre2-8', required by 'glib-2.0', not found Package libpcre2-8 was not found in the pkg-config search path. Perhaps you should add the directory containing `libpcre2-8.pc' to the PKG_CONFIG_PATH environment variable Package 'libpcre2-8', required by 'glib-2.0', not found Package libpcre2-8 was not found in the pkg-config search path. Perhaps you should add the directory containing `libpcre2-8.pc' to the PKG_CONFIG_PATH environment variable Package 'libpcre2-8', required by 'glib-2.0', not found Package libpcre2-8 was not found in the pkg-config search path. Perhaps you should add the directory containing `libpcre2-8.pc' to the PKG_CONFIG_PATH environment variable Package 'libpcre2-8', required by 'glib-2.0', not found -- Checking for module 'gstreamer-audio-1.0 >= 1.18.4' -- Found gstreamer-audio-1.0, version 1.24.3 Package libpcre2-8 was not found in the pkg-config search path. Perhaps you should add the directory containing `libpcre2-8.pc' to the PKG_CONFIG_PATH environment variable Package 'libpcre2-8', required by 'glib-2.0', not found Package libpcre2-8 was not found in the pkg-config search path. Perhaps you should add the directory containing `libpcre2-8.pc' to the PKG_CONFIG_PATH environment variable Package 'libpcre2-8', required by 'glib-2.0', not found Package libpcre2-8 was not found in the pkg-config search path. Perhaps you should add the directory containing `libpcre2-8.pc' to the PKG_CONFIG_PATH environment variable Package 'libpcre2-8', required by 'glib-2.0', not found Package libpcre2-8 was not found in the pkg-config search path. Perhaps you should add the directory containing `libpcre2-8.pc' to the PKG_CONFIG_PATH environment variable Package 'libpcre2-8', required by 'glib-2.0', not found -- Checking for module 'gstreamer-fft-1.0 >= 1.18.4' -- Found gstreamer-fft-1.0, version 1.24.3 Package libpcre2-8 was not found in the pkg-config search path. Perhaps you should add the directory containing `libpcre2-8.pc' to the PKG_CONFIG_PATH environment variable Package 'libpcre2-8', required by 'glib-2.0', not found Package libpcre2-8 was not found in the pkg-config search path. Perhaps you should add the directory containing `libpcre2-8.pc' to the PKG_CONFIG_PATH environment variable Package 'libpcre2-8', required by 'glib-2.0', not found Package libpcre2-8 was not found in the pkg-config search path. Perhaps you should add the directory containing `libpcre2-8.pc' to the PKG_CONFIG_PATH environment variable Package 'libpcre2-8', required by 'glib-2.0', not found Package libpcre2-8 was not found in the pkg-config search path. Perhaps you should add the directory containing `libpcre2-8.pc' to the PKG_CONFIG_PATH environment variable Package 'libpcre2-8', required by 'glib-2.0', not found -- Checking for module 'gstreamer-gl-1.0 >= 1.18.4' -- No package 'gstreamer-gl-1.0' found -- Checking for module 'gstreamer-mpegts-1.0>=1.4.0' -- Found gstreamer-mpegts-1.0, version 1.24.3 Package libpcre2-8 was not found in the pkg-config search path. Perhaps you should add the directory containing `libpcre2-8.pc' to the PKG_CONFIG_PATH environment variable Package 'libpcre2-8', required by 'glib-2.0', not found Package libpcre2-8 was not found in the pkg-config search path. Perhaps you should add the directory containing `libpcre2-8.pc' to the PKG_CONFIG_PATH environment variable Package 'libpcre2-8', required by 'glib-2.0', not found Package libpcre2-8 was not found in the pkg-config search path. Perhaps you should add the directory containing `libpcre2-8.pc' to the PKG_CONFIG_PATH environment variable Package 'libpcre2-8', required by 'glib-2.0', not found Package libpcre2-8 was not found in the pkg-config search path. Perhaps you should add the directory containing `libpcre2-8.pc' to the PKG_CONFIG_PATH environment variable Package 'libpcre2-8', required by 'glib-2.0', not found -- Checking for module 'gstreamer-pbutils-1.0 >= 1.18.4' -- Found gstreamer-pbutils-1.0, version 1.24.3 Package libpcre2-8 was not found in the pkg-config search path. Perhaps you should add the directory containing `libpcre2-8.pc' to the PKG_CONFIG_PATH environment variable Package 'libpcre2-8', required by 'glib-2.0', not found Package libpcre2-8 was not found in the pkg-config search path. Perhaps you should add the directory containing `libpcre2-8.pc' to the PKG_CONFIG_PATH environment variable Package 'libpcre2-8', required by 'glib-2.0', not found Package libpcre2-8 was not found in the pkg-config search path. Perhaps you should add the directory containing `libpcre2-8.pc' to the PKG_CONFIG_PATH environment variable Package 'libpcre2-8', required by 'glib-2.0', not found Package libpcre2-8 was not found in the pkg-config search path. Perhaps you should add the directory containing `libpcre2-8.pc' to the PKG_CONFIG_PATH environment variable Package 'libpcre2-8', required by 'glib-2.0', not found -- Checking for module 'gstreamer-tag-1.0 >= 1.18.4' -- Found gstreamer-tag-1.0, version 1.24.3 Package libpcre2-8 was not found in the pkg-config search path. Perhaps you should add the directory containing `libpcre2-8.pc' to the PKG_CONFIG_PATH environment variable Package 'libpcre2-8', required by 'glib-2.0', not found Package libpcre2-8 was not found in the pkg-config search path. Perhaps you should add the directory containing `libpcre2-8.pc' to the PKG_CONFIG_PATH environment variable Package 'libpcre2-8', required by 'glib-2.0', not found Package libpcre2-8 was not found in the pkg-config search path. Perhaps you should add the directory containing `libpcre2-8.pc' to the PKG_CONFIG_PATH environment variable Package 'libpcre2-8', required by 'glib-2.0', not found Package libpcre2-8 was not found in the pkg-config search path. Perhaps you should add the directory containing `libpcre2-8.pc' to the PKG_CONFIG_PATH environment variable Package 'libpcre2-8', required by 'glib-2.0', not found -- Checking for module 'gstreamer-video-1.0 >= 1.18.4' -- Found gstreamer-video-1.0, version 1.24.3 Package libpcre2-8 was not found in the pkg-config search path. Perhaps you should add the directory containing `libpcre2-8.pc' to the PKG_CONFIG_PATH environment variable Package 'libpcre2-8', required by 'glib-2.0', not found Package libpcre2-8 was not found in the pkg-config search path. Perhaps you should add the directory containing `libpcre2-8.pc' to the PKG_CONFIG_PATH environment variable Package 'libpcre2-8', required by 'glib-2.0', not found Package libpcre2-8 was not found in the pkg-config search path. Perhaps you should add the directory containing `libpcre2-8.pc' to the PKG_CONFIG_PATH environment variable Package 'libpcre2-8', required by 'glib-2.0', not found Package libpcre2-8 was not found in the pkg-config search path. Perhaps you should add the directory containing `libpcre2-8.pc' to the PKG_CONFIG_PATH environment variable Package 'libpcre2-8', required by 'glib-2.0', not found -- Checking for module 'gstreamer-codecparsers-1.0 >= 1.18.4' -- Found gstreamer-codecparsers-1.0, version 1.24.3 Package libpcre2-8 was not found in the pkg-config search path. Perhaps you should add the directory containing `libpcre2-8.pc' to the PKG_CONFIG_PATH environment variable Package 'libpcre2-8', required by 'glib-2.0', not found Package libpcre2-8 was not found in the pkg-config search path. Perhaps you should add the directory containing `libpcre2-8.pc' to the PKG_CONFIG_PATH environment variable Package 'libpcre2-8', required by 'glib-2.0', not found Package libpcre2-8 was not found in the pkg-config search path. Perhaps you should add the directory containing `libpcre2-8.pc' to the PKG_CONFIG_PATH environment variable Package 'libpcre2-8', required by 'glib-2.0', not found Package libpcre2-8 was not found in the pkg-config search path. Perhaps you should add the directory containing `libpcre2-8.pc' to the PKG_CONFIG_PATH environment variable Package 'libpcre2-8', required by 'glib-2.0', not found -- Checking for module 'gstreamer-transcoder-1.0 >= 1.18.4' -- Found gstreamer-transcoder-1.0, version 1.24.3 Package libpcre2-8 was not found in the pkg-config search path. Perhaps you should add the directory containing `libpcre2-8.pc' to the PKG_CONFIG_PATH environment variable Package 'libpcre2-8', required by 'glib-2.0', not found Package libpcre2-8 was not found in the pkg-config search path. Perhaps you should add the directory containing `libpcre2-8.pc' to the PKG_CONFIG_PATH environment variable Package 'libpcre2-8', required by 'glib-2.0', not found Package libpcre2-8 was not found in the pkg-config search path. Perhaps you should add the directory containing `libpcre2-8.pc' to the PKG_CONFIG_PATH environment variable Package 'libpcre2-8', required by 'glib-2.0', not found Package libpcre2-8 was not found in the pkg-config search path. Perhaps you should add the directory containing `libpcre2-8.pc' to the PKG_CONFIG_PATH environment variable Package 'libpcre2-8', required by 'glib-2.0', not found -- Checking for module 'gstreamer-rtp-1.0 >= 1.18.4' -- Found gstreamer-rtp-1.0, version 1.24.3 Package libpcre2-8 was not found in the pkg-config search path. Perhaps you should add the directory containing `libpcre2-8.pc' to the PKG_CONFIG_PATH environment variable Package 'libpcre2-8', required by 'glib-2.0', not found Package libpcre2-8 was not found in the pkg-config search path. Perhaps you should add the directory containing `libpcre2-8.pc' to the PKG_CONFIG_PATH environment variable Package 'libpcre2-8', required by 'glib-2.0', not found Package libpcre2-8 was not found in the pkg-config search path. Perhaps you should add the directory containing `libpcre2-8.pc' to the PKG_CONFIG_PATH environment variable Package 'libpcre2-8', required by 'glib-2.0', not found Package libpcre2-8 was not found in the pkg-config search path. Perhaps you should add the directory containing `libpcre2-8.pc' to the PKG_CONFIG_PATH environment variable Package 'libpcre2-8', required by 'glib-2.0', not found -- Checking for module 'gstreamer-sdp-1.0 >= 1.18.4' -- Found gstreamer-sdp-1.0, version 1.24.3 Package libpcre2-8 was not found in the pkg-config search path. Perhaps you should add the directory containing `libpcre2-8.pc' to the PKG_CONFIG_PATH environment variable Package 'libpcre2-8', required by 'glib-2.0', not found Package libpcre2-8 was not found in the pkg-config search path. Perhaps you should add the directory containing `libpcre2-8.pc' to the PKG_CONFIG_PATH environment variable Package 'libpcre2-8', required by 'glib-2.0', not found Package libpcre2-8 was not found in the pkg-config search path. Perhaps you should add the directory containing `libpcre2-8.pc' to the PKG_CONFIG_PATH environment variable Package 'libpcre2-8', required by 'glib-2.0', not found Package libpcre2-8 was not found in the pkg-config search path. Perhaps you should add the directory containing `libpcre2-8.pc' to the PKG_CONFIG_PATH environment variable Package 'libpcre2-8', required by 'glib-2.0', not found -- Checking for module 'gstreamer-webrtc-1.0 >= 1.18.4' -- Found gstreamer-webrtc-1.0, version 1.24.3 Package libpcre2-8 was not found in the pkg-config search path. Perhaps you should add the directory containing `libpcre2-8.pc' to the PKG_CONFIG_PATH environment variable Package 'libpcre2-8', required by 'glib-2.0', not found Package libpcre2-8 was not found in the pkg-config search path. Perhaps you should add the directory containing `libpcre2-8.pc' to the PKG_CONFIG_PATH environment variable Package 'libpcre2-8', required by 'glib-2.0', not found Package libpcre2-8 was not found in the pkg-config search path. Perhaps you should add the directory containing `libpcre2-8.pc' to the PKG_CONFIG_PATH environment variable Package 'libpcre2-8', required by 'glib-2.0', not found Package libpcre2-8 was not found in the pkg-config search path. Perhaps you should add the directory containing `libpcre2-8.pc' to the PKG_CONFIG_PATH environment variable Package 'libpcre2-8', required by 'glib-2.0', not found -- Found GStreamer: GSTREAMER_INCLUDE_DIRS;GSTREAMER_LIBRARIES;GSTREAMER_VERSION;GSTREAMER_BASE_INCLUDE_DIRS;GSTREAMER_BASE_LIBRARIES;GSTREAMER_APP_INCLUDE_DIRS;GSTREAMER_APP_LIBRARIES;GSTREAMER_PBUTILS_INCLUDE_DIRS;GSTREAMER_PBUTILS_LIBRARIES;GSTREAMER_VIDEO_INCLUDE_DIRS;GSTREAMER_VIDEO_LIBRARIES;GSTREAMER_MPEGTS_INCLUDE_DIRS;GSTREAMER_MPEGTS_LIBRARIES;GSTREAMER_TAG_INCLUDE_DIRS;GSTREAMER_TAG_LIBRARIES;GSTREAMER_GL_INCLUDE_DIRS;GSTREAMER_GL_LIBRARIES;GSTREAMER_AUDIO_INCLUDE_DIRS;GSTREAMER_AUDIO_LIBRARIES;GSTREAMER_FFT_INCLUDE_DIRS;GSTREAMER_FFT_LIBRARIES;GSTREAMER_TRANSCODER_INCLUDE_DIRS;GSTREAMER_TRANSCODER_LIBRARIES (Required is at least version "1.18.4") -- Found Gperf: /nix/store/whaimyw0d3w9l6x6kibw6pzaqvrd420n-gperf-3.1/bin/gperf (Required is at least version "3.0.1") -- Platform-specific CMakeLists not found: /tmp/nix-build-webkitgtk-2.46.0+abi=4.0.drv-0/webkitgtk-2.46.0/Source/bmalloc/PlatformGTK.cmake -- Performing Test CXX_COMPILER_SUPPORTS_-Wno-missing-field-initializers -- Performing Test CXX_COMPILER_SUPPORTS_-Wno-missing-field-initializers - Success -- Performing Test CXX_COMPILER_SUPPORTS_-Wno-cast-align -- Performing Test CXX_COMPILER_SUPPORTS_-Wno-cast-align - Success -- Using platform-specific CMakeLists: /tmp/nix-build-webkitgtk-2.46.0+abi=4.0.drv-0/webkitgtk-2.46.0/Source/WTF/wtf/PlatformGTK.cmake -- Copying generate-unified-source-bundles.rb to: /tmp/nix-build-webkitgtk-2.46.0+abi=4.0.drv-0/webkitgtk-2.46.0/build/WTF/Scripts -- Using platform-specific CMakeLists: /tmp/nix-build-webkitgtk-2.46.0+abi=4.0.drv-0/webkitgtk-2.46.0/Source/JavaScriptCore/PlatformGTK.cmake -- Performing Test CXX_COMPILER_SUPPORTS_-ffp-contract__off -- Performing Test CXX_COMPILER_SUPPORTS_-ffp-contract__off - Success -- Performing Test CXX_COMPILER_SUPPORTS_-fno-slp-vectorize -- Performing Test CXX_COMPILER_SUPPORTS_-fno-slp-vectorize - Success -- Using source list file: Sources.txt -- Using source list file: inspector/remote/SourcesGLib.txt -- Using platform-specific CMakeLists: /tmp/nix-build-webkitgtk-2.46.0+abi=4.0.drv-0/webkitgtk-2.46.0/Source/JavaScriptCore/shell/PlatformGTK.cmake -- Using platform-specific CMakeLists: /tmp/nix-build-webkitgtk-2.46.0+abi=4.0.drv-0/webkitgtk-2.46.0/Source/ThirdParty/ANGLE/PlatformGTK.cmake -- Performing Test C_COMPILER_SUPPORTS_-w -- Performing Test C_COMPILER_SUPPORTS_-w - Success -- Performing Test CXX_COMPILER_SUPPORTS_-w -- Performing Test CXX_COMPILER_SUPPORTS_-w - Success -- Performing Test C_COMPILER_SUPPORTS_-Wno-cast-align -- Performing Test C_COMPILER_SUPPORTS_-Wno-cast-align - Success -- Performing Test C_COMPILER_SUPPORTS_-Wno-cast-function-type -- Performing Test C_COMPILER_SUPPORTS_-Wno-cast-function-type - Success -- Performing Test C_COMPILER_SUPPORTS_-Wno-sign-compare -- Performing Test C_COMPILER_SUPPORTS_-Wno-sign-compare - Success -- Performing Test C_COMPILER_SUPPORTS_-Wno-unused-parameter -- Performing Test C_COMPILER_SUPPORTS_-Wno-unused-parameter - Success -- Found Freetype: /nix/store/k9ylzq625iiyb3q8djcjpnqrij4bpwpg-freetype-2.13.2/lib/libfreetype.dylib (found suitable version "2.13.2", minimum required is "2.9.0") -- Found Fontconfig: /nix/store/6mmqh8cdwfqacya0gl92mmqm8h4b9bpr-fontconfig-2.15.0-lib/lib/libfontconfig.dylib (found suitable version "2.15.0", minimum required is "2.13.0") -- Found the following WebP libraries: -- WebP (required): /nix/store/5q5sz1a77i9jrw6dhzr3zr48frr2zzdz-libwebp-1.4.0/lib/libwebp.dylib -- mux (required): /nix/store/5q5sz1a77i9jrw6dhzr3zr48frr2zzdz-libwebp-1.4.0/lib/libwebpmux.dylib -- Performing Test CXX_COMPILER_SUPPORTS_-fstrict-aliasing -- Performing Test CXX_COMPILER_SUPPORTS_-fstrict-aliasing - Success -- Performing Test CXX_COMPILER_SUPPORTS_-Wno-attributes -- Performing Test CXX_COMPILER_SUPPORTS_-Wno-attributes - Success -- Performing Test CXX_COMPILER_SUPPORTS_-Wno-dangling-reference -- Performing Test CXX_COMPILER_SUPPORTS_-Wno-dangling-reference - Failed -- Performing Test CXX_COMPILER_SUPPORTS_-Wno-deprecated -- Performing Test CXX_COMPILER_SUPPORTS_-Wno-deprecated - Success -- Performing Test CXX_COMPILER_SUPPORTS_-Wno-suggest-attribute__format -- Performing Test CXX_COMPILER_SUPPORTS_-Wno-suggest-attribute__format - Failed -- Performing Test CXX_COMPILER_SUPPORTS_-Wno-undef -- Performing Test CXX_COMPILER_SUPPORTS_-Wno-undef - Success -- Performing Test CXX_COMPILER_SUPPORTS_-Wno-uninitialized -- Performing Test CXX_COMPILER_SUPPORTS_-Wno-uninitialized - Success -- Performing Test CXX_COMPILER_SUPPORTS_-Wno-unused-parameter -- Performing Test CXX_COMPILER_SUPPORTS_-Wno-unused-parameter - Success -- Performing Test CXX_COMPILER_SUPPORTS_-mf16c -- Performing Test CXX_COMPILER_SUPPORTS_-mf16c - Success -- Performing Test CXX_COMPILER_SUPPORTS_-mavx2 -- Performing Test CXX_COMPILER_SUPPORTS_-mavx2 - Success -- Performing Test CXX_COMPILER_SUPPORTS_-mavx512f -- Performing Test CXX_COMPILER_SUPPORTS_-mavx512f - Success -- Performing Test CXX_COMPILER_SUPPORTS_-mavx512dq -- Performing Test CXX_COMPILER_SUPPORTS_-mavx512dq - Success -- Performing Test CXX_COMPILER_SUPPORTS_-mavx512cd -- Performing Test CXX_COMPILER_SUPPORTS_-mavx512cd - Success -- Performing Test CXX_COMPILER_SUPPORTS_-mavx512bw -- Performing Test CXX_COMPILER_SUPPORTS_-mavx512bw - Success -- Performing Test CXX_COMPILER_SUPPORTS_-mavx512vl -- Performing Test CXX_COMPILER_SUPPORTS_-mavx512vl - Success -- Performing Test CXX_COMPILER_SUPPORTS_-march__haswell -- Performing Test CXX_COMPILER_SUPPORTS_-march__haswell - Success -- Performing Test CXX_COMPILER_SUPPORTS_-march__skylake-avx512 -- Performing Test CXX_COMPILER_SUPPORTS_-march__skylake-avx512 - Success -- Checking for module 'sysprof-capture-4' -- Found sysprof-capture-4, version 46.0 -- Found SysProfCapture: /nix/store/fpv9vjzkicacn2jbzi7yw8dmfbwnk13g-libsysprof-capture-46.0/lib/libsysprof-capture-4.a (found version "46.0") -- Using platform-specific CMakeLists: /tmp/nix-build-webkitgtk-2.46.0+abi=4.0.drv-0/webkitgtk-2.46.0/Source/WebInspectorUI/PlatformGTK.cmake -- Using platform-specific CMakeLists: /tmp/nix-build-webkitgtk-2.46.0+abi=4.0.drv-0/webkitgtk-2.46.0/Source/WebCore/PAL/pal/PlatformGTK.cmake -- Looking for shm_open -- Looking for shm_open - found -- Using platform-specific CMakeLists: /tmp/nix-build-webkitgtk-2.46.0+abi=4.0.drv-0/webkitgtk-2.46.0/Source/WebCore/PlatformGTK.cmake -- Using source list file: Sources.txt -- Using source list file: platform/SourcesAdwaita.txt -- Using source list file: platform/SourcesGCrypt.txt -- Using source list file: platform/SourcesGStreamer.txt -- Using source list file: platform/SourcesSoup.txt -- Using source list file: platform/SourcesNicosia.txt -- Using source list file: platform/SourcesSkia.txt -- Using source list file: SourcesGTK.txt -- Using source list file: platform/SourcesGLib.txt -- Using platform-specific CMakeLists: /tmp/nix-build-webkitgtk-2.46.0+abi=4.0.drv-0/webkitgtk-2.46.0/Source/WebKit/PlatformGTK.cmake -- Using source list file: Sources.txt -- Using source list file: Platform/Sources.txt -- Using source list file: SourcesGTK.txt -- Using source list file: SourcesGTKDeprecated.txt -- Performing Test CXX_COMPILER_SUPPORTS_-fobjc-weak -- Performing Test CXX_COMPILER_SUPPORTS_-fobjc-weak - Success -- Using platform-specific CMakeLists: /tmp/nix-build-webkitgtk-2.46.0+abi=4.0.drv-0/webkitgtk-2.46.0/Source/WebDriver/PlatformGTK.cmake -- Using platform-specific CMakeLists: /tmp/nix-build-webkitgtk-2.46.0+abi=4.0.drv-0/webkitgtk-2.46.0/Source/PlatformGTK.cmake -- Found Gettext: /nix/store/zqwgi3m63rjx7aldab0wyyhyw07sys44-gettext-0.21.1/bin/msgmerge (found version "0.21.1") -- Using platform-specific CMakeLists: /tmp/nix-build-webkitgtk-2.46.0+abi=4.0.drv-0/webkitgtk-2.46.0/Tools/PlatformGTK.cmake -- Enabled features: -- ENABLE_BUBBLEWRAP_SANDBOX ..................... OFF -- ENABLE_DOCUMENTATION ON -- ENABLE_DRAG_SUPPORT ........................... ON -- ENABLE_GAMEPAD OFF -- ENABLE_INTROSPECTION .......................... ON -- ENABLE_JOURNALD_LOG OFF -- ENABLE_MINIBROWSER ............................ OFF -- ENABLE_PDFJS ON -- ENABLE_QUARTZ_TARGET .......................... ON -- ENABLE_SPELLCHECK ON -- ENABLE_TOUCH_EVENTS ........................... ON -- ENABLE_VIDEO ON -- ENABLE_WAYLAND_TARGET ......................... OFF -- ENABLE_WEBDRIVER ON -- ENABLE_WEB_AUDIO .............................. ON -- ENABLE_X11_TARGET OFF -- USE_AVIF ...................................... ON -- USE_GBM OFF -- USE_GSTREAMER_TRANSCODER ...................... ON -- USE_GSTREAMER_WEBRTC OFF -- USE_GTK4 ...................................... OFF -- USE_JPEGXL ON -- USE_LCMS ...................................... ON -- USE_LIBBACKTRACE ON -- USE_LIBDRM .................................... OFF -- USE_LIBHYPHEN ON -- USE_LIBSECRET ................................. ON -- USE_SOUP2 ON -- USE_WOFF2 ..................................... ON -- Configuring done (198.9s) CMake Error at Source/cmake/WebKitMacros.cmake:118 (target_sources): Cannot find source file: darwin/OSLogPrintStream.mm Call Stack (most recent call first): Source/cmake/WebKitMacros.cmake:322 (_WEBKIT_TARGET) Source/WTF/wtf/CMakeLists.txt:735 (WEBKIT_FRAMEWORK)  CMake Error in Source/WTF/wtf/CMakeLists.txt: Cannot find source file: cf/CFURLExtras.h  CMake Error in Source/WTF/wtf/CMakeLists.txt: Cannot find source file: cf/TypeCastsCF.h  CMake Error in Source/WTF/wtf/CMakeLists.txt: Cannot find source file: cf/VectorCF.h  CMake Error in Source/WTF/wtf/CMakeLists.txt: Cannot find source file: cocoa/CrashReporter.h  CMake Error in Source/WTF/wtf/CMakeLists.txt: Cannot find source file: cocoa/Entitlements.h  CMake Error in Source/WTF/wtf/CMakeLists.txt: Cannot find source file: cocoa/NSURLExtras.h  CMake Error in Source/WTF/wtf/CMakeLists.txt: Cannot find source file: cocoa/RuntimeApplicationChecksCocoa.h  CMake Error in Source/WTF/wtf/CMakeLists.txt: Cannot find source file: cocoa/SoftLinking.h  CMake Error in Source/WTF/wtf/CMakeLists.txt: Cannot find source file: cocoa/TollFreeBridging.h  CMake Error in Source/WTF/wtf/CMakeLists.txt: Cannot find source file: cocoa/TypeCastsCocoa.h  CMake Error in Source/WTF/wtf/CMakeLists.txt: Cannot find source file: cocoa/VectorCocoa.h  CMake Error in Source/WTF/wtf/CMakeLists.txt: Cannot find source file: spi/cf/CFBundleSPI.h  CMake Error in Source/WTF/wtf/CMakeLists.txt: Cannot find source file: spi/cf/CFStringSPI.h  CMake Error in Source/WTF/wtf/CMakeLists.txt: Cannot find source file: spi/cocoa/CFXPCBridgeSPI.h  CMake Error in Source/WTF/wtf/CMakeLists.txt: Cannot find source file: spi/cocoa/CrashReporterClientSPI.h  CMake Error in Source/WTF/wtf/CMakeLists.txt: Cannot find source file: spi/cocoa/IOSurfaceSPI.h  CMake Error in Source/WTF/wtf/CMakeLists.txt: Cannot find source file: spi/cocoa/MachVMSPI.h  CMake Error in Source/WTF/wtf/CMakeLists.txt: Cannot find source file: spi/cocoa/NSLocaleSPI.h  CMake Error in Source/WTF/wtf/CMakeLists.txt: Cannot find source file: spi/cocoa/NSObjCRuntimeSPI.h  CMake Error in Source/WTF/wtf/CMakeLists.txt: Cannot find source file: spi/cocoa/SecuritySPI.h  CMake Error in Source/WTF/wtf/CMakeLists.txt: Cannot find source file: spi/cocoa/objcSPI.h  CMake Error in Source/WTF/wtf/CMakeLists.txt: Cannot find source file: spi/mac/MetadataSPI.h  CMake Error in Source/WTF/wtf/CMakeLists.txt: Cannot find source file: text/cf/StringConcatenateCF.h  CMake Error in Source/WTF/wtf/CMakeLists.txt: Cannot find source file: text/cf/TextBreakIteratorCF.h  CMake Error: CMake can not determine linker language for target: WTF -- Generating done (2.3s) CMake Warning: Manually-specified variables were not used by the project: BUILD_TESTING CMAKE_EXPORT_NO_PACKAGE_REGISTRY CMAKE_POLICY_DEFAULT_CMP0025 USE_OPENGL_OR_ES  CMake Generate step failed. Build files cannot be regenerated correctly. ```