Skip to content

Commit

Permalink
doc: add release note entry about buildPython*.stdenv
Browse files Browse the repository at this point in the history
  • Loading branch information
ShamrockLee committed Dec 6, 2023
1 parent 2c750f6 commit 93fb0e3
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions nixos/doc/manual/release-notes/rl-2405.section.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,19 @@ The pre-existing [services.ankisyncd](#opt-services.ankisyncd.enable) has been m
The `nimPackages` and `nim2Packages` sets have been removed.
See https://nixos.org/manual/nixpkgs/unstable#nim for more information.

- `buildPythonPackage.override` and `buildPythonApplication.override` is now available.

- One can now specify custom `stdenv` with `buildPython*.override` when building Python packages. For example:

```nix
buildPythonPackage.override { stdenv = ...; } {
pname = ...;
version = ...;
}
```

This is now recommended over passing `stdenv` as a `buildPython*` argument.

- The Yama LSM is now enabled by default in the kernel, which prevents ptracing
non-child processes. This means you will not be able to attach gdb to an
existing process, but will need to start that process from gdb (so it is a
Expand Down

0 comments on commit 93fb0e3

Please sign in to comment.