From 86d9f7ed0d91469ef697b0a9e9f7a40d88bc0bb6 Mon Sep 17 00:00:00 2001 From: Sefa Eyeoglu Date: Mon, 11 Nov 2024 19:48:30 +0100 Subject: [PATCH] doc/tauri: stdenv.is* -> stdenv.hostPlatform.is* Signed-off-by: Sefa Eyeoglu --- doc/hooks/tauri.section.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/hooks/tauri.section.md b/doc/hooks/tauri.section.md index 7658f413b880..2713515015dd 100644 --- a/doc/hooks/tauri.section.md +++ b/doc/hooks/tauri.section.md @@ -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