Skip to content

Commit

Permalink
doc/tauri: stdenv.is* -> stdenv.buildPlatform.is*
Browse files Browse the repository at this point in the history
Signed-off-by: Sefa Eyeoglu <[email protected]>
  • Loading branch information
Scrumplex committed Nov 11, 2024
1 parent 7109139 commit 714b3d0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions doc/hooks/tauri.section.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,12 +52,12 @@ rustPlatform.buildRustPackage rec {
buildInputs =
[ openssl ]
++ lib.optionals stdenv.isLinux [
++ lib.optionals stdenv.buildPlatform.isLinux [
glib-networking # Most Tauri apps need networking
libsoup
webkitgtk_4_0
]
++ lib.optionals stdenv.isDarwin (
++ lib.optionals stdenv.buildPlatform.isDarwin (
with darwin.apple_sdk.frameworks;
[
AppKit
Expand Down

0 comments on commit 714b3d0

Please sign in to comment.