You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- Rename `nix profile install` to `nix profile add`[#13224](https://github.com/NixOS/nix/pull/13224)
22
+
- Rename `nix profile install` to [`nix profile add`][#13224](https://github.com/NixOS/nix/pull/13224)
23
23
24
-
The command `nix profile install` has been renamed to `nix profile add` (though the former is still available as an alias). This is because the verb "add" is a better antonym for the verb "remove" (i.e. `nix profile remove`). Nix also does not have install hooks or general behavior often associated with "installing".
24
+
The command `nix profile install` has been renamed to [`nix profile add`] (though the former is still available as an alias). This is because the verb "add" is a better antonym for the verb "remove" (i.e. `nix profile remove`). Nix also does not have install hooks or general behavior often associated with "installing".
25
25
26
26
## Performance improvements
27
27
@@ -33,39 +33,39 @@ This release has a number performance improvements, in particular:
The Nix evaluator now supports [stack sampling evaluation profiling](@docroot@/advanced-topics/eval-profiler.md) via the `--eval-profiler flamegraph` setting.
38
+
The Nix evaluator now supports [stack sampling evaluation profiling](@docroot@/advanced-topics/eval-profiler.md) via the [`--eval-profiler flamegraph`] setting.
39
39
It outputs collapsed call stack information to the file specified by
40
-
`--eval-profile-file` (`nix.profile` by default) in a format directly consumable
40
+
[`--eval-profile-file`] (`nix.profile` by default) in a format directly consumable
41
41
by `flamegraph.pl` and compatible tools like [speedscope](https://speedscope.app/).
42
-
Sampling frequency can be configured via `--eval-profiler-frequency` (99 Hz by default).
42
+
Sampling frequency can be configured via [`--eval-profiler-frequency`] (99 Hz by default).
43
43
44
-
Unlike the existing `--trace-function-calls`, this profiler includes the name of the function
44
+
Unlike the existing [`--trace-function-calls`], this profiler includes the name of the function
45
45
being called when it's available.
46
46
47
-
-`nix repl` prints which variables were loaded [#11406](https://github.com/NixOS/nix/pull/11406)
47
+
-[`nix repl`] prints which variables were loaded [#11406](https://github.com/NixOS/nix/pull/11406)
48
48
49
49
Instead of `Added <n> variables` it now prints the first 10 variables that were added to the global scope.
This is useful when using `nix flake archive` with the destination set to a remote store.
53
+
This is useful when using [`nix flake archive`] with the destination set to a remote store.
54
54
55
-
- Emit warnings for IFDs with `trace-import-from-derivation` option [#13279](https://github.com/NixOS/nix/pull/13279)
55
+
- Emit warnings for IFDs with [`trace-import-from-derivation`] option [#13279](https://github.com/NixOS/nix/pull/13279)
56
56
57
-
While we have the setting `allow-import-from-derivation` to deny import-from-derivation (IFD), sometimes users would like to observe IFDs during CI processes to gradually phase out the idiom. The new setting `trace-import-from-derivation`, when set, logs a simple warning to the console.
57
+
While we have the setting [`allow-import-from-derivation`] to deny import-from-derivation (IFD), sometimes users would like to observe IFDs during CI processes to gradually phase out the idiom. The new setting `trace-import-from-derivation`, when set, logs a simple warning to the console.
New setting `json-log-path` that sends a copy of all Nix log messages (in JSON format) to a file or Unix domain socket.
61
+
New setting [`json-log-path`] that sends a copy of all Nix log messages (in JSON format) to a file or Unix domain socket.
62
62
63
63
- Non-flake inputs now contain a `sourceInfo` attribute [#13164](https://github.com/NixOS/nix/issues/13164)[#13170](https://github.com/NixOS/nix/pull/13170)
64
64
65
65
Flakes have always had a `sourceInfo` attribute which describes the source of the flake.
66
66
The `sourceInfo.outPath` is often identical to the flake's `outPath`. However, it can differ when the flake is located in a subdirectory of its source.
67
67
68
-
Non-flake inputs (i.e. inputs with `flake = false`) can also be located at some path _within_ a wider source.
68
+
Non-flake inputs (i.e. inputs with [`flake = false`]) can also be located at some path _within_ a wider source.
69
69
This usually happens when defining a relative path input within the same source as the parent flake, e.g. `inputs.foo.url = ./some-file.nix`.
70
70
Such relative inputs will now inherit their parent's `sourceInfo`.
71
71
@@ -76,13 +76,13 @@ This release has a number performance improvements, in particular:
Previously it used libstdc++'s `std::stable_sort()`. However, that implementation is not reliable if the user-supplied comparison function is not a strict weak ordering.
82
82
83
83
- Revert incomplete closure mixed download and build feature [#77](https://github.com/NixOS/nix/issues/77)[#12628](https://github.com/NixOS/nix/issues/12628)[#13176](https://github.com/NixOS/nix/pull/13176)
84
84
85
-
Since Nix 1.3 (299141ecbd08bae17013226dbeae71e842b4fdd7 in 2013) Nix has attempted to mix together upstream fresh builds and downstream substitutions when remote substuters contain an "incomplete closure" (have some store objects, but not the store objects they reference).
85
+
Since Nix 1.3 ([commit `299141e`] in 2013) Nix has attempted to mix together upstream fresh builds and downstream substitutions when remote substuters contain an "incomplete closure" (have some store objects, but not the store objects they reference).
86
86
This feature is now removed.
87
87
88
88
In the worst case, removing this feature could cause more building downstream, but it should not cause outright failures, since this is not happening for opaque store objects that we don't know how to build if we decide not to substitute.
@@ -132,3 +132,22 @@ This release was made possible by the following 32 contributors:
0 commit comments