Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Enable wxWebView in wxGTK32. #268348

Merged
merged 1 commit into from
Nov 22, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions nixos/doc/manual/release-notes/rl-2311.section.md
Original file line number Diff line number Diff line change
Expand Up @@ -561,6 +561,8 @@ The module update takes care of the new config syntax and the data itself (user

- TeX Live environments can now be built with the new `texlive.withPackages`. The procedure for creating custom TeX packages has been changed, see the [Nixpkgs manual](https://nixos.org/manual/nixpkgs/stable/#sec-language-texlive-custom-packages) for more details.

- In `wxGTK32`, the webkit module `wxWebView` has been enabled on all builds; prior releases only enabled this on Darwin.

## Nixpkgs internals {#sec-release-23.11-nixpkgs-internals}

- Node.js v14, v16 has been removed as they were end of life. Any dependent packages that contributors were not able to reasonably upgrade were dropped after a month of notice to their maintainers, were **removed**.
Expand Down
2 changes: 1 addition & 1 deletion pkgs/development/libraries/wxwidgets/wxGTK32.nix
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
, compat30 ? true
, unicode ? true
, withMesa ? !stdenv.isDarwin
, withWebKit ? stdenv.isDarwin
, withWebKit ? true
, webkitgtk
, setfile
, AGL
Expand Down