aboutsummaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorEelco Dolstra <edolstra@gmail.com>2021-11-01 22:44:07 +0100
committerEelco Dolstra <edolstra@gmail.com>2021-11-01 22:44:07 +0100
commit6a93e186f4838c13701b4f4551ddaa240ea1cf72 (patch)
tree824f17c50e05538cae79b1422a4408b9327c4a7c /doc
parent888771b4b2f153bfbf203e07d768d577ab2343e8 (diff)
Fix 2.4 migration examples
Diffstat (limited to 'doc')
-rw-r--r--doc/manual/src/release-notes/rl-2.4.md28
1 files changed, 21 insertions, 7 deletions
diff --git a/doc/manual/src/release-notes/rl-2.4.md b/doc/manual/src/release-notes/rl-2.4.md
index 3c94e6740..70b715053 100644
--- a/doc/manual/src/release-notes/rl-2.4.md
+++ b/doc/manual/src/release-notes/rl-2.4.md
@@ -281,7 +281,9 @@ more than 2800 commits from 195 contributors since release 2.3.
* The `nix` command is now marked as an experimental feature. This
means that you need to add
- > experimental-features = nix-command
+ ```
+ experimental-features = nix-command
+ ```
to your `nix.conf` if you want to use it, or pass
`--extra-experimental-features nix-command` on the command line.
@@ -289,30 +291,42 @@ more than 2800 commits from 195 contributors since release 2.3.
* The `nix` command no longer has a syntax for referring to packages
in a channel. This means that the following no longer works:
- > nix build nixpkgs.hello # Nix 2.3
+ ```console
+ nix build nixpkgs.hello # Nix 2.3
+ ```
Instead, you can either use the `#` syntax to select a package from
a flake, e.g.
- > nix build nixpkgs#hello
+ ```console
+ nix build nixpkgs#hello
+ ```
Or, if you want to use the `nixpkgs` channel in the `NIX_PATH`
environment variable:
- > nix build -f '<nixpkgs>' hello
+ ```console
+ nix build -f '<nixpkgs>' hello
+ ```
* The old `nix run` has been renamed to `nix shell`, while there is a
new `nix run` that runs a default command. So instead of
- > nix run nixpkgs.hello -c hello # Nix 2.3
+ ```console
+ nix run nixpkgs.hello -c hello # Nix 2.3
+ ```
you should use
- > nix shell nixpkgs#hello -c hello
+ ```console
+ nix shell nixpkgs#hello -c hello
+ ```
or just
- > nix run nixpkgs#hello
+ ```console
+ nix run nixpkgs#hello
+ ```
if the command you want to run has the same name as the package.