diff options
author | John Ericson <John.Ericson@Obsidian.Systems> | 2022-12-12 17:40:49 -0500 |
---|---|---|
committer | John Ericson <John.Ericson@Obsidian.Systems> | 2022-12-12 17:40:49 -0500 |
commit | 5273cf4c9743ce7a39646229029618640ceb35c3 (patch) | |
tree | cecefa6c719f445d782aa8c45b920f5de7fa582d /doc | |
parent | dabb03b8d0ee0155ef994042ef807e0924b9e6e7 (diff) | |
parent | edb54c62e6c66f3d26642c024d92bd20b30abf85 (diff) |
Merge remote-tracking branch 'upstream/master' into indexed-store-path-outputs
Diffstat (limited to 'doc')
-rw-r--r-- | doc/manual/src/release-notes/rl-next.md | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/doc/manual/src/release-notes/rl-next.md b/doc/manual/src/release-notes/rl-next.md index 15c309bdb..6c169bd09 100644 --- a/doc/manual/src/release-notes/rl-next.md +++ b/doc/manual/src/release-notes/rl-next.md @@ -3,6 +3,18 @@ * 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 command line interface], e.g. + + [flake references]: ../command-ref/new-cli/nix3-flake.md#flake-references + [old command line interface]: ../command-ref/main-commands.md + + ``` + # 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 + ``` + * Allow explicitly selecting outputs in a store derivation installable, just like we can do with other sorts of installables. For example, ```shell-session |