diff options
author | Eelco Dolstra <edolstra@gmail.com> | 2022-02-24 21:16:58 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-02-24 21:16:58 +0100 |
commit | 59683733f5e1e5acecf26bff2a7255126e04eb76 (patch) | |
tree | fa253c0a9382a3d6b61bc6397cbd08734cf475a4 /doc | |
parent | cf7f98483a8b190cc17831f9d4031f895fac514f (diff) | |
parent | 1a6548ca757f81594f5b54d8dada4c5ba65821de (diff) |
Merge pull request #6089 from edolstra/dot-default
Replace defaultBla.$system with bla.$system.default
Diffstat (limited to 'doc')
-rw-r--r-- | doc/manual/src/release-notes/rl-next.md | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/doc/manual/src/release-notes/rl-next.md b/doc/manual/src/release-notes/rl-next.md index 80eed9397..7dd8387d8 100644 --- a/doc/manual/src/release-notes/rl-next.md +++ b/doc/manual/src/release-notes/rl-next.md @@ -1,5 +1,18 @@ # Release X.Y (202?-??-??) +* A number of "default" flake output attributes have been + renamed. These are: + + * `defaultPackage.<system>` → `packages.<system>.default` + * `defaultApps.<system>` → `apps.<system>.default` + * `defaultTemplate` → `templates.default` + * `defaultBundler.<system>` → `bundlers.<system>.default` + * `overlay` → `overlays.default` + * `devShell.<system>` → `devShells.<system>.default` + + The old flake output attributes still work, but `nix flake check` + will warn about them. + * `nix bundle` breaking API change now supports bundlers of the form `bundler.<system>.<name>= derivation: another-derivation;`. This supports additional functionality to inspect evaluation information during bundling. A |