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

Documentation work; added platform-specific notes for nix #990

Closed
wants to merge 9 commits into from
17 changes: 17 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,23 @@ sudo dnf install libappindicator-gtk3-devel

Fedora does not have the Ayatana package yet, so you need to use the GTK one, see the [feature flags documentation](https://docs.rs/wry/latest/wry/#feature-flags).

#### NixOS
Latest Packages for Development:
```nix
let
# Unstable Channel | Rolling Release
pkgs = import (fetchTarball("channel:nixpkgs-unstable")) { };

packages = with pkgs; [
pkg-config
webkitgtk_4_1
pelasgus marked this conversation as resolved.
Show resolved Hide resolved
];
in
pkgs.mkShell {
buildInputs = packages;
}
```

### macOS

WebKit is native on macOS so everything should be fine.
Expand Down
Loading