From 3cdc384e7601ce10ae42afee2dbc004275ec9b7f Mon Sep 17 00:00:00 2001 From: Fabian-Lars Date: Mon, 18 Aug 2025 11:38:24 +0200 Subject: [PATCH] docs: Replace NixOS prereqs instructions with link to NixOS wiki. (#3458) Co-authored-by: Paul Valladares <85648028+dreyfus92@users.noreply.github.com> --- src/content/docs/es/start/prerequisites.mdx | 34 +------------------ src/content/docs/fr/start/prerequisites.mdx | 34 +------------------ src/content/docs/ja/start/prerequisites.mdx | 34 +------------------ src/content/docs/start/prerequisites.mdx | 34 +------------------ .../docs/zh-cn/start/prerequisites.mdx | 34 +------------------ 5 files changed, 5 insertions(+), 165 deletions(-) diff --git a/src/content/docs/es/start/prerequisites.mdx b/src/content/docs/es/start/prerequisites.mdx index 8858f24d8..17aa11511 100644 --- a/src/content/docs/es/start/prerequisites.mdx +++ b/src/content/docs/es/start/prerequisites.mdx @@ -122,41 +122,9 @@ sudo apk add \ :::note -Esto también instalará Rust y Node.js, además de la CLI de `cargo-tauri` por ti, por lo que puedes omitir esos pasos a continuación. +Las instrucciones para Nix/NixOS pueden ser encontradas en [NixOS Wiki](https://wiki.nixos.org/wiki/Tauri). ::: -Using `nix-shell`: - -```nix -let - pkgs = import { }; -in -pkgs.mkShell { - nativeBuildInputs = with pkgs; [ - pkg-config - gobject-introspection - cargo - cargo-tauri - nodejs - ]; - - buildInputs = with pkgs;[ - at-spi2-atk - atkmm - cairo - gdk-pixbuf - glib - gtk3 - harfbuzz - librsvg - libsoup_3 - pango - webkitgtk_4_1 - openssl - ]; -} -``` - diff --git a/src/content/docs/fr/start/prerequisites.mdx b/src/content/docs/fr/start/prerequisites.mdx index f4904ff20..1e37a541e 100644 --- a/src/content/docs/fr/start/prerequisites.mdx +++ b/src/content/docs/fr/start/prerequisites.mdx @@ -122,41 +122,9 @@ sudo apk add \ :::note -Cela installera également Rust et Node.js ainsi que le CLI `cargo-tauri` pour vous, vous pouvez donc sauter ces étapes ci-dessous. +Les instructions pour Nix/NixOS peuvent être trouvées dans le [NixOS Wiki](https://wiki.nixos.org/wiki/Tauri). ::: -Using `nix-shell`: - -```nix -let - pkgs = import { }; -in -pkgs.mkShell { - nativeBuildInputs = with pkgs; [ - pkg-config - gobject-introspection - cargo - cargo-tauri - nodejs - ]; - - buildInputs = with pkgs;[ - at-spi2-atk - atkmm - cairo - gdk-pixbuf - glib - gtk3 - harfbuzz - librsvg - libsoup_3 - pango - webkitgtk_4_1 - openssl - ]; -} -``` - diff --git a/src/content/docs/ja/start/prerequisites.mdx b/src/content/docs/ja/start/prerequisites.mdx index 349bd21a7..5c45ad093 100644 --- a/src/content/docs/ja/start/prerequisites.mdx +++ b/src/content/docs/ja/start/prerequisites.mdx @@ -121,41 +121,9 @@ sudo apk add \ :::note -この処理では、Rust と Node.js および「`cargo-tauri`」コマンドライン・インターフェース(CLI) のインストールも同時に行なわれますので、以下の作業ステップを省略できます。 +Instructions for Nix/NixOS can be found in the [NixOS Wiki](https://wiki.nixos.org/wiki/Tauri). ::: -Using `nix-shell`: - -```nix -let - pkgs = import { }; -in -pkgs.mkShell { - nativeBuildInputs = with pkgs; [ - pkg-config - gobject-introspection - cargo - cargo-tauri - nodejs - ]; - - buildInputs = with pkgs;[ - at-spi2-atk - atkmm - cairo - gdk-pixbuf - glib - gtk3 - harfbuzz - librsvg - libsoup_3 - pango - webkitgtk_4_1 - openssl - ]; -} -``` - diff --git a/src/content/docs/start/prerequisites.mdx b/src/content/docs/start/prerequisites.mdx index c4dc58461..9257c3cd3 100644 --- a/src/content/docs/start/prerequisites.mdx +++ b/src/content/docs/start/prerequisites.mdx @@ -119,41 +119,9 @@ sudo apk add \ :::note -This will also install Rust and Node.js as well as the `cargo-tauri` CLI for you, so you can skip those steps below. +Instructions for Nix/NixOS can be found in the [NixOS Wiki](https://wiki.nixos.org/wiki/Tauri). ::: -Using `nix-shell`: - -```nix -let - pkgs = import { }; -in -pkgs.mkShell { - nativeBuildInputs = with pkgs; [ - pkg-config - gobject-introspection - cargo - cargo-tauri - nodejs - ]; - - buildInputs = with pkgs;[ - at-spi2-atk - atkmm - cairo - gdk-pixbuf - glib - gtk3 - harfbuzz - librsvg - libsoup_3 - pango - webkitgtk_4_1 - openssl - ]; -} -``` - diff --git a/src/content/docs/zh-cn/start/prerequisites.mdx b/src/content/docs/zh-cn/start/prerequisites.mdx index 7a51bd784..542e1f5ec 100644 --- a/src/content/docs/zh-cn/start/prerequisites.mdx +++ b/src/content/docs/zh-cn/start/prerequisites.mdx @@ -117,41 +117,9 @@ sudo apk add \ :::note -这也会为你安装 Rust 和 Node.js 以及 `cargo-tauri` CLI,因此你可以跳过下面的步骤。 +Instructions for Nix/NixOS can be found in the [NixOS Wiki](https://wiki.nixos.org/wiki/Tauri). ::: -使用 `nix-shell`: - -```nix -let - pkgs = import { }; -in -pkgs.mkShell { - nativeBuildInputs = with pkgs; [ - pkg-config - gobject-introspection - cargo - cargo-tauri - nodejs - ]; - - buildInputs = with pkgs;[ - at-spi2-atk - atkmm - cairo - gdk-pixbuf - glib - gtk3 - harfbuzz - librsvg - libsoup_3 - pango - webkitgtk_4_1 - openssl - ]; -} -``` -