This is needed to avoid this https://github.com/mesonbuild/meson/issues/13774 when we go back to making our subproject directory `src`.
17 KiB
Release 2.24.0 (2024-07-31)
Significant changes
-
Harden user sandboxing
The build directory has been hardened against interference with the outside world by nesting it inside another directory owned by (and only readable by) the daemon user.
This is a low severity security fix, CVE-2024-38531.
Credit: @alois31, Linus Heckemann (@lheckemann) Co-authors: @edolstra
-
nix-shell <directory>
looks forshell.nix
#496 #2279 #4529 #5431 #11053 #11057nix-shell $x
now looks for$x/shell.nix
when$x
resolves to a directory.Although this might be seen as a breaking change, its primarily interactive usage makes it a minor issue. This adjustment addresses a commonly reported problem.
This also applies to
nix-shell
shebang scripts. Consider the following example:#!/usr/bin/env nix-shell #!nix-shell -i bash
This will now load
shell.nix
from the script's directory, if it exists;default.nix
otherwise.The old behavior can be opted into by setting the option
nix-shell-always-looks-for-shell-nix
tofalse
.Author: Robert Hensing (@roberth)
-
nix-repl
's:doc
shows documentation comments #3904 #10771 #1652 #9054 #11072nix repl
has a:doc
command that previously only rendered documentation for internally defined functions. This feature has been extended to also render function documentation comments, in accordance with RFC 145.Example:
nix-repl> :doc lib.toFunction Function toFunction … defined at /home/user/h/nixpkgs/lib/trivial.nix:1072:5 Turns any non-callable values into constant functions. Returns callable values as is. Inputs v : Any value Examples :::{.example} ## lib.trivial.toFunction usage example | nix-repl> lib.toFunction 1 2 | 1 | | nix-repl> lib.toFunction (x: x + 1) 2 | 3 :::
Known limitations:
- It does not render documentation for "formals", such as
{ /** the value to return */ x, ... }: x
. - Some extensions to markdown are not yet supported, as you can see in the example above.
We'd like to acknowledge Yingchi Long (@inclyc) for proposing a proof of concept for this functionality in #9054, as well as @sternenseemann and Johannes Kirschbauer (@hsjobeki) for their contributions, proposals, and their work on RFC 145.
Author: Robert Hensing (@roberth)
- It does not render documentation for "formals", such as
Other changes
-
Solve
cached failure of attribute X
#9165 #10513 #10564This eliminates all "cached failure of attribute X" messages by forcing evaluation of the original value when needed to show the exception to the user. This enhancement improves error reporting by providing the underlying message and stack trace.
Author: Eelco Dolstra (@edolstra)
-
Run the flake regressions test suite #10603
This update introduces a GitHub action to run a subset of the flake regressions test suite, which includes 259 flakes with their expected evaluation results. Currently, the action runs the first 25 flakes due to the full test suite's extensive runtime. A manually triggered action may be implemented later to run the entire test suite.
Author: Eelco Dolstra (@edolstra)
-
Support unit prefixes in configuration settings #10668
Configuration settings in Nix now support unit prefixes, allowing for more intuitive and readable configurations. For example, you can now specify
--min-free 1G
to set the minimum free space to 1 gigabyte.This enhancement was extracted from #7851 and is also useful for PR #10661.
Author: Eelco Dolstra (@edolstra)
-
nix build
: show all FOD errors with--keep-going
#10734The
nix build
command has been updated to improve the behavior of the [--keep-going
] flag. Now, when--keep-going
is used, all hash-mismatch errors of failing fixed-output derivations (FODs) are displayed, similar to the behavior for other build failures. This enhancement ensures that all relevant build errors are shown, making it easier for users to update multiple derivations at once or to diagnose and fix issues. -
Build with Meson #2503 #10378 #10855 #10904 #10908 #10914 #10933 #10936 #10954 #10955 #10963 #10967 #10973 #11034 #11054 #11055 #11060 #11064 #11155
These changes aim to replace the use of autotools and
make
with Meson for building various components of Nix. Additionally, each library is built in its own derivation, leveraging Meson's "subprojects" feature to allow a single development shell for building all libraries while also supporting separate builds. This approach aims to improve productivity and build modularity, compared to both make and a monolithic Meson-based derivation.Special thanks to everyone who has contributed to the Meson port, particularly @p01arst0rm and @Qyriad.
Authors: John Ericson (@Ericson2314), Tom Bereknyei, Théophane Hufschmitt (@thufschmitt), Valentin Gagarin (@fricklerhandwerk), Robert Hensing (@roberth) Co-authors: @p01arst0rm, @Qyriad
-
Evaluation cache: fix cache regressions #10570 #11086
This update addresses two bugs in the evaluation cache system:
- Regression in #10570: The evaluation cache was not being persisted in
nix develop
. - Nix could sometimes try to commit the evaluation cache SQLite transaction without there being an active transaction, resulting in non-error errors being printed.
Author: Lexi Mattick (@kognise)
- Regression in #10570: The evaluation cache was not being persisted in
-
Introduce
libnixflake
#9063A new library,
libnixflake
, has been introduced to better separate the Flakes layer within Nix. This change refactors the codebase to encapsulate Flakes-specific functionality within its own library.See the commits in the pull request for detailed changes, with the only significant code modifications happening in the initial commit.
This change was alluded to in RFC 134 and is a step towards a more modular and maintainable codebase.
Author: John Ericson (@Ericson2314)
-
CLI options
--arg-from-file
and--arg-from-stdin
#9913 -
The
--debugger
now prints source location information, instead of the pointers of source location information. Before:nix-repl> :bt 0: while evaluating the attribute 'python311.pythonForBuild.pkgs' 0x600001522598
After:
0: while evaluating the attribute 'python311.pythonForBuild.pkgs' /nix/store/hg65h51xnp74ikahns9hyf3py5mlbbqq-source/overrides/default.nix:132:27 131| 132| bootstrappingBase = pkgs.${self.python.pythonAttr}.pythonForBuild.pkgs; | ^ 133| in
-
Stop vendoring
toml11
We don't apply any patches to it, and vendoring it locks users into bugs (it hasn't been updated since its introduction in late 2021).
Author: Winter (@winterqt)
-
Rename hash format
base32
tonix32
#8678Hash format
base32
was renamed tonix32
since it used a special nix-specific character set for Base32.Deprecation: Use
nix32
instead ofbase32
astoHashFormat
For the builtin
convertHash
, thetoHashFormat
parameter now accepts the same hash formats as the--to
/--from
parameters of thenix hash conert
command:"base16"
,"nix32"
,"base64"
, and"sri"
. The former"base32"
value remains as a deprecated alias for"nix32"
. Please convert your code from:builtins.convertHash { inherit hash hashAlgo; toHashFormat = "base32";}
to
builtins.convertHash { inherit hash hashAlgo; toHashFormat = "nix32";}
-
Add
pipe-operators
experimental feature #11131This is a draft implementation of RFC 0148.
The
pipe-operators
experimental feature adds<|
and|>
operators to the Nix language. a|>
b is equivalent to the function application b a, and a<|
b is equivalent to the function application a b.For example:
nix-repl> 1 |> builtins.add 2 |> builtins.mul 3 9 nix-repl> builtins.add 1 <| builtins.mul 2 <| 3 7
<|
and|>
are right and left associative, respectively, and have lower precedence than any other operator. These properties may change in future releases.See the RFC for more examples and rationale.
-
nix-shell
shebang uses relative path #4232 #5088 #11058Relative path literals in
nix-shell
shebang scripts' options are now resolved relative to the script's location. Previously they were resolved relative to the current working directory.For example, consider the following script in
~/myproject/say-hi
:#!/usr/bin/env nix-shell #!nix-shell --expr 'import ./shell.nix' #!nix-shell --arg toolset './greeting-tools.nix' #!nix-shell -i bash hello
Older versions of
nix-shell
would resolveshell.nix
relative to the current working directory, such as the user's home directory in this example:[hostname:~]$ ./myproject/say-hi error: … while calling the 'import' builtin at «string»:1:2: 1| (import ./shell.nix) | ^ error: path '/home/user/shell.nix' does not exist
Since this release,
nix-shell
resolvesshell.nix
relative to the script's location, and~/myproject/shell.nix
is used.$ ./myproject/say-hi Hello, world!
Opt-out
This is technically a breaking change, so we have added an option so you can adapt independently of your Nix update. The old behavior can be opted into by setting the option
nix-shell-shebang-arguments-relative-to-script
tofalse
. This option will be removed in a future release.Author: Robert Hensing (@roberth)
-
Improve handling of tarballs that don't consist of a single top-level directory #11195
In previous Nix releases, the tarball fetcher (used by
builtins.fetchTarball
) erroneously merged top-level directories into a single directory, and silently discarded top-level files that are not directories. This is no longer the case. The new behaviour is that only if the tarball consists of a single directory, the top-level path component of the files in the tarball is removed (similar totar
's--strip-components=1
).Author: Eelco Dolstra (@edolstra)
-
Setting to warn about large paths #10778
Nix can now warn when evaluation of a Nix expression causes a large path to be copied to the Nix store. The threshold for this warning can be configured using the
warn-large-path-threshold
setting, e.g.--warn-large-path-threshold 100M
.
Contributors
This release was made possible by the following 43 contributors:
- Andreas Rammhold (@andir)
- Andrew Marshall (@amarshall)
- Brian McKenna (@puffnfresh)
- Cameron (@SkamDart)
- Cole Helbling (@cole-h)
- Corbin Simpson (@MostAwesomeDude)
- Eelco Dolstra (@edolstra)
- Emily (@emilazy)
- Enno Richter (@elohmeier)
- Farid Zakaria (@fzakaria)
- HaeNoe (@haenoe)
- Hamir Mahal (@hamirmahal)
- Harmen (@alicebob)
- Ivan Trubach (@tie)
- Jared Baur (@jmbaur)
- John Ericson (@Ericson2314)
- Jonathan De Troye (@detroyejr)
- Jörg Thalheim (@Mic92)
- Klemens Nanni (@klemensn)
- Las Safin (@L-as)
- Lexi Mattick (@kognise)
- Matthew Bauer (@matthewbauer)
- Max “Goldstein” Siling (@GoldsteinE)
- Mingye Wang (@Artoria2e5)
- Philip Taron (@philiptaron)
- Pierre Bourdon (@delroth)
- Pino Toscano (@pinotree)
- RTUnreal (@RTUnreal)
- Robert Hensing (@roberth)
- Romain Neil (@romain-neil)
- Ryan Hendrickson (@rhendric)
- Sergei Trofimovich (@trofi)
- Shogo Takata (@pineapplehunter)
- Siddhant Kumar (@siddhantk232)
- Silvan Mosberger (@infinisil)
- Théophane Hufschmitt (@thufschmitt)
- Valentin Gagarin (@fricklerhandwerk)
- Winter (@winterqt)
- jade (@lf-)
- kirillrdy (@kirillrdy)
- pennae (@pennae)
- poweredbypie (@poweredbypie)
- tomberek (@tomberek)