Skip to content

playwright-webkit: Fix broken build#418639

Merged
Aleksanaa merged 1 commit intoNixOS:masterfrom
brianmcgillion:fix-playwright
Jun 21, 2025
Merged

playwright-webkit: Fix broken build#418639
Aleksanaa merged 1 commit intoNixOS:masterfrom
brianmcgillion:fix-playwright

Conversation

@brianmcgillion
Copy link
Copy Markdown
Contributor

   > auto-patchelf: 2 dependencies could not be satisfied
   > error: auto-patchelf could not satisfy dependency libxml2.so.2 wanted by /nix/store/bz0scnv4x47f9piavdj5l6ww60i60mww-playwright-webkit/minibrowser-wpe/lib/libWPEWebKit-2.0.so.1.6.0
   > error: auto-patchelf could not satisfy dependency libxml2.so.2 wanted by /nix/store/bz0scnv4x47f9piavdj5l6ww60i60mww-playwright-webkit/minibrowser-wpe/bin/.MiniBrowser-wrapped
   > auto-patchelf failed to find all the required dependencies.
   > Add the missing dependencies to --libs or use `--ignore-missing="foo.so.1 bar.so etc.so"`.
   > For full logs, run:
   >   nix log
   >   /nix/store/fqnh2989sp0csn98k8kivrkiq6b4l556-playwright-webkit.drv

inspired by #418619, #396195 (comment)

and additional commentry here: #418521 (comment)

Things done

  • Built on platform(s)
    • x86_64-linux
    • aarch64-linux
    • x86_64-darwin
    • aarch64-darwin
  • For non-Linux: Is sandboxing enabled in nix.conf? (See Nix manual)
    • sandbox = relaxed
    • sandbox = true
  • Tested, as applicable:
  • Tested compilation of all packages that depend on this change using nix-shell -p nixpkgs-review --run "nixpkgs-review rev HEAD". Note: all changes have to be committed, also see nixpkgs-review usage
  • Tested basic functionality of all binary files (usually in ./result/bin/)
  • Nixpkgs 25.11 Release Notes (or backporting 24.11 and 25.05 Nixpkgs Release notes)
    • (Package updates) Added a release notes entry if the change is major or breaking
  • NixOS 25.11 Release Notes (or backporting 24.11 and 25.05 NixOS Release notes)
    • (Module updates) Added a release notes entry if the change is significant
    • (Module addition) Added a release notes entry if adding a new NixOS module
  • Fits CONTRIBUTING.md, pkgs/README.md, maintainers/README.md and other contributing documentation in corresponding paths.

Add a 👍 reaction to pull requests you find important.

       > auto-patchelf: 2 dependencies could not be satisfied
       > error: auto-patchelf could not satisfy dependency libxml2.so.2 wanted by /nix/store/bz0scnv4x47f9piavdj5l6ww60i60mww-playwright-webkit/minibrowser-wpe/lib/libWPEWebKit-2.0.so.1.6.0
       > error: auto-patchelf could not satisfy dependency libxml2.so.2 wanted by /nix/store/bz0scnv4x47f9piavdj5l6ww60i60mww-playwright-webkit/minibrowser-wpe/bin/.MiniBrowser-wrapped
       > auto-patchelf failed to find all the required dependencies.
       > Add the missing dependencies to --libs or use `--ignore-missing="foo.so.1 bar.so etc.so"`.
       > For full logs, run:
       >   nix log
       >   /nix/store/fqnh2989sp0csn98k8kivrkiq6b4l556-playwright-webkit.drv

Signed-off-by: Brian McGillion <bmg.avoin@gmail.com>
@github-actions github-actions bot added 10.rebuild-darwin: 0 This PR does not cause any packages to rebuild on Darwin. 10.rebuild-linux: 11-100 This PR causes between 11 and 100 packages to rebuild on Linux. labels Jun 21, 2025
@brianmcgillion brianmcgillion requested a review from kalekseev June 21, 2025 06:35
@brianmcgillion
Copy link
Copy Markdown
Contributor Author

nixpkgs-review result

Generated using nixpkgs-review-gha

Command: nixpkgs-review pr 418639

Logs: https://github.com/brianmcgillion/nixpkgs-review-gha/actions/runs/15793066732


x86_64-linux (sandbox = true)

⏩ 2 packages marked as broken and skipped:
  • python312Packages.froide
  • python312Packages.froide.dist
✅ 23 packages built:
  • aider-chat-full
  • aider-chat-full.dist
  • aider-chat-with-playwright
  • aider-chat-with-playwright.dist
  • pinnwand
  • pinnwand.dist
  • playwright-test
  • python312Packages.django-filingcabinet
  • python312Packages.django-filingcabinet.dist
  • python312Packages.great-tables
  • python312Packages.great-tables.dist
  • python312Packages.pytest-playwright
  • python312Packages.pytest-playwright.dist
  • python312Packages.shiny
  • python312Packages.shiny.dist
  • python313Packages.django-filingcabinet
  • python313Packages.django-filingcabinet.dist
  • python313Packages.great-tables
  • python313Packages.great-tables.dist
  • python313Packages.pytest-playwright
  • python313Packages.pytest-playwright.dist
  • python313Packages.shiny
  • python313Packages.shiny.dist

aarch64-linux (sandbox = true)

⏩ 2 packages marked as broken and skipped:
  • python312Packages.froide
  • python312Packages.froide.dist
✅ 23 packages built:
  • aider-chat-full
  • aider-chat-full.dist
  • aider-chat-with-playwright
  • aider-chat-with-playwright.dist
  • pinnwand
  • pinnwand.dist
  • playwright-test
  • python312Packages.django-filingcabinet
  • python312Packages.django-filingcabinet.dist
  • python312Packages.great-tables
  • python312Packages.great-tables.dist
  • python312Packages.pytest-playwright
  • python312Packages.pytest-playwright.dist
  • python312Packages.shiny
  • python312Packages.shiny.dist
  • python313Packages.django-filingcabinet
  • python313Packages.django-filingcabinet.dist
  • python313Packages.great-tables
  • python313Packages.great-tables.dist
  • python313Packages.pytest-playwright
  • python313Packages.pytest-playwright.dist
  • python313Packages.shiny
  • python313Packages.shiny.dist

Copy link
Copy Markdown
Contributor

@kalekseev kalekseev left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM

@github-actions github-actions bot added the 12.approvals: 1 This PR was reviewed and approved by one person. label Jun 21, 2025
@Aleksanaa Aleksanaa merged commit 56c41cd into NixOS:master Jun 21, 2025
25 of 27 checks passed
@brianmcgillion brianmcgillion deleted the fix-playwright branch June 21, 2025 16:14
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

10.rebuild-darwin: 0 This PR does not cause any packages to rebuild on Darwin. 10.rebuild-linux: 11-100 This PR causes between 11 and 100 packages to rebuild on Linux. 12.approvals: 1 This PR was reviewed and approved by one person.

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants