Unverified Commit e29fc9e9 authored by Artturin's avatar Artturin Committed by GitHub
Browse files

doc/tauri: stdenv.is* -> stdenv.hostPlatform.is* (#355251)

parents 264dc47d 86d9f7ed
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -52,12 +52,12 @@ rustPlatform.buildRustPackage rec {

  buildInputs =
    [ openssl ]
    ++ lib.optionals stdenv.isLinux [
    ++ lib.optionals stdenv.hostPlatform.isLinux [
      glib-networking # Most Tauri apps need networking
      libsoup
      webkitgtk_4_0
    ]
    ++ lib.optionals stdenv.isDarwin (
    ++ lib.optionals stdenv.hostPlatform.isDarwin (
      with darwin.apple_sdk.frameworks;
      [
        AppKit