about summary refs log tree commit diff
path: root/nixos
diff options
context:
space:
mode:
authorDmitry Ivankov <dmitry.ivankov@cognite.com>2023-06-14 08:27:07 +0200
committerYt <happysalada@tuta.io>2023-06-14 07:52:56 -0400
commitccdd853b64f08a2aceb623bd9ff3fb3e7d0418d0 (patch)
tree9be805bf7e4c773cb1b4fc7187fc4a398bc7c5b6 /nixos
parent1a30e2972e0e236cff0973ecb31daee73fc5192e (diff)
downloadnixlib-ccdd853b64f08a2aceb623bd9ff3fb3e7d0418d0.tar
nixlib-ccdd853b64f08a2aceb623bd9ff3fb3e7d0418d0.tar.gz
nixlib-ccdd853b64f08a2aceb623bd9ff3fb3e7d0418d0.tar.bz2
nixlib-ccdd853b64f08a2aceb623bd9ff3fb3e7d0418d0.tar.lz
nixlib-ccdd853b64f08a2aceb623bd9ff3fb3e7d0418d0.tar.xz
nixlib-ccdd853b64f08a2aceb623bd9ff3fb3e7d0418d0.tar.zst
nixlib-ccdd853b64f08a2aceb623bd9ff3fb3e7d0418d0.zip
23.05 changelog typo fix: buildFHSEnvChrootenv -> buildFHSEnvChroot
Diffstat (limited to 'nixos')
-rw-r--r--nixos/doc/manual/release-notes/rl-2305.section.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/doc/manual/release-notes/rl-2305.section.md b/nixos/doc/manual/release-notes/rl-2305.section.md
index 0d3b4705ec90..4d45463adea4 100644
--- a/nixos/doc/manual/release-notes/rl-2305.section.md
+++ b/nixos/doc/manual/release-notes/rl-2305.section.md
@@ -553,7 +553,7 @@ In addition to numerous new and updated packages, this release has the following
 
 - `buildDunePackage` now defaults to `strictDeps = true` which means that any library should go into `buildInputs` or `checkInputs`. Any executable that is run on the building machine should go into `nativeBuildInputs` or `nativeCheckInputs` respectively. Example of executables are `ocaml`, `findlib` and `menhir`. PPXs are libraries which are built by dune and should therefore not go into `nativeBuildInputs`.
 
-- `buildFHSUserEnv` is now called `buildFHSEnv` and uses FlatPak's Bubblewrap sandboxing tool rather than Nixpkgs' own chrootenv. The old chrootenv-based implemenation is still available via `buildFHSEnvChrootenv` but is considered deprecated and will be removed when the remaining uses inside Nixpkgs have been migrated. If your FHSEnv-wrapped application misbehaves when using the new bubblewrap implementation, please create an issue in Nixpkgs.
+- `buildFHSUserEnv` is now called `buildFHSEnv` and uses FlatPak's Bubblewrap sandboxing tool rather than Nixpkgs' own chrootenv. The old chrootenv-based implemenation is still available via `buildFHSEnvChroot` but is considered deprecated and will be removed when the remaining uses inside Nixpkgs have been migrated. If your FHSEnv-wrapped application misbehaves when using the new bubblewrap implementation, please create an issue in Nixpkgs.
 
 - Top-level `buildPlatform`, `hostPlatform`, `targetPlatform` have been deprecated, use `stdenv.X` instead.