File tree 2 files changed +23
-14
lines changed
2 files changed +23
-14
lines changed Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ Use included `shell.nix`
22
22
23
23
## Common steps
24
24
``` bash
25
- cargo install --locked --version " ^2.0" tauri-cli
25
+ cargo install --locked --version " ^2.0" tauri-cli
26
26
cargo install --locked --no-default-features --features update_check,rustls trunk
27
27
rustup target add wasm32-unknown-unknown
28
28
```
Original file line number Diff line number Diff line change 4
4
libPath = with pkgs ;
5
5
lib . makeLibraryPath [
6
6
pkgs . libayatana-appindicator
7
- # pkgs.libappindicator
7
+ # or pkgs.libappindicator
8
8
] ;
9
9
in
10
10
pkgs . mkShell rec {
11
- buildInputs = with pkgs ; [
12
- clang
13
- gcc
14
- llvmPackages . bintools
15
- rustup
16
- openssl
11
+ nativeBuildInputs = with pkgs ; [
17
12
pkg-config
18
- udev
13
+ gobject-introspection
14
+ cargo
15
+ cargo-tauri
16
+ nodejs
17
+ ] ;
18
+
19
+ buildInputs = with pkgs ; [
20
+ at-spi2-atk
21
+ atkmm
22
+ cairo
19
23
gdk-pixbuf
24
+ glib
20
25
gtk3
21
- webkitgtk_4_0
26
+ harfbuzz
27
+ librsvg
22
28
libsoup_3
23
- libayatana-appindicator
24
- # libappindicator
25
- xdo
26
- glib
27
29
pango
30
+ webkitgtk_4_1
31
+ openssl
32
+ udev
33
+ xdo
34
+ libayatana-appindicator
35
+ # or libappindicator
28
36
] ;
29
37
RUSTC_VERSION = overrides . toolchain . channel ;
30
38
# https://github.com/rust-lang/rust-bindgen#environment-variables
52
60
''-I${ pkgs . glib . out } /lib/glib-2.0/include/''
53
61
] ;
54
62
}
63
+
You can’t perform that action at this time.
0 commit comments