From 8e51d6520c856a83d8faa258f0f832c1da8b5d36 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Bourdeauducq?= Date: Thu, 27 Jun 2024 13:13:26 +0800 Subject: [PATCH] doc: fix nix URLs --- doc/manual/installing.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/manual/installing.rst b/doc/manual/installing.rst index ae58f3eb5..2ffd14dce 100644 --- a/doc/manual/installing.rst +++ b/doc/manual/installing.rst @@ -15,7 +15,7 @@ Once Nix is installed, enable Flakes: :: $ mkdir -p ~/.config/nix $ echo "experimental-features = nix-command flakes" > ~/.config/nix/nix.conf -The easiest way to obtain ARTIQ is then to install it into the user environment with ``$ nix profile install git+https://github.com/m-labs/artiq.git``. Answer "Yes" to the questions about setting Nix configuration options. This provides a minimal installation of ARTIQ where the usual commands (``artiq_master``, ``artiq_dashboard``, ``artiq_run``, etc.) are available. +The easiest way to obtain ARTIQ is then to install it into the user environment with ``$ nix profile install git+https://github.com/m-labs/artiq.git?ref=release-8``. Answer "Yes" to the questions about setting Nix configuration options. This provides a minimal installation of ARTIQ where the usual commands (``artiq_master``, ``artiq_dashboard``, ``artiq_run``, etc.) are available. This installation is however quite limited, as Nix creates a dedicated Python environment for the ARTIQ commands alone. This means that other useful Python packages that you may want (pandas, matplotlib, ...) are not available to them. @@ -24,7 +24,7 @@ Installing multiple packages and making them visible to the ARTIQ commands requi :: { - inputs.extrapkg.url = "git+https://git.m-labs.hk/M-Labs/artiq-extrapkg.git"; + inputs.extrapkg.url = "git+https://git.m-labs.hk/M-Labs/artiq-extrapkg.git?ref=release-8"; outputs = { self, extrapkg }: let pkgs = extrapkg.pkgs;