diff options
author | Eelco Dolstra <edolstra@gmail.com> | 2022-12-07 15:23:01 +0100 |
---|---|---|
committer | Eelco Dolstra <edolstra@gmail.com> | 2022-12-12 14:05:52 +0100 |
commit | fd0ed7511818ba871dc3e28796ec1d0ca57b22ec (patch) | |
tree | 75aeee532ba00a2f9a52f472bdcba46969e8a711 /doc/manual/src/release-notes | |
parent | ae5f62a894190e0075eb60ae4537ba81ca2a0a8d (diff) |
Support flake references in the old CLI
Fixes #7026.
Diffstat (limited to 'doc/manual/src/release-notes')
-rw-r--r-- | doc/manual/src/release-notes/rl-next.md | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/doc/manual/src/release-notes/rl-next.md b/doc/manual/src/release-notes/rl-next.md index c1f4de76f..160537f41 100644 --- a/doc/manual/src/release-notes/rl-next.md +++ b/doc/manual/src/release-notes/rl-next.md @@ -2,3 +2,12 @@ * The `repeat` and `enforce-determinism` options have been removed since they had been broken under many circumstances for a long time. + +* You can now use flake references in the old CLI, e.g. + + ``` + # nix-build flake:nixpkgs -A hello + # nix-build -I nixpkgs=flake:github:NixOS/nixpkgs/nixos-22.05 \ + '<nixpkgs>' -A hello + # NIX_PATH=nixpkgs=flake:nixpkgs nix-build '<nixpkgs>' -A hello + ``` |