-
-
Notifications
You must be signed in to change notification settings - Fork 18.1k
Closed
Labels
0.kind: bugSomething is brokenSomething is broken
Description
Describe the bug
Trying to run xwidget-webkit-browse-url command in emacs29-pgtk package results in TLS/SSL support not available; install glib-networking error
Steps To Reproduce
Steps to reproduce the behavior:
nix run nixpkgs#emacs29-pgtk- In emacs
M-x xwidget-webkit-browse-url - Enter
https://www.example.com - Webkit shows
TLS/SSL support not available; install glib-networkingerror
Expected behavior
Webpage should open and be rendered
Screenshots
Additional context
In emacs/generic.nix package derivation we have the following lines of code:
...
assert withPgtk -> withGTK3 && !withX;
...
] ++ lib.optionals (withX && withXwidgets) [
glib-networking
] ++ ...
glib-networking is only enabled if withX is true but the assert ensures that either withPgtk is true or withX is true but not both. So, enabling withXwidgets and withPgtk results in withX being false and glib-networking not being added.
Notify maintainers
@AndersonTorres
@adisbladis
@Atemu
@jwiegley
@lovek323
@matthewbauer
Metadata
[user@system:~]$ nix-shell -p nix-info --run "nix-info -m"
- system: `"x86_64-linux"`
- host os: `Linux 6.1.43, NixOS, 23.11 (Tapir), 23.11.20230808.41c7605`
- multi-user?: `yes`
- sandbox: `yes`
- version: `nix-env (Nix) 2.15.1`
- channels(root): `"nixos, nixpkgs"`
- nixpkgs: `/nix/var/nix/profiles/per-user/root/channels/nixos`Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
0.kind: bugSomething is brokenSomething is broken
