about summary refs log tree commit diff
path: root/nixos/doc
diff options
context:
space:
mode:
authorAaron Jheng <wentworth@outlook.com>2023-09-30 14:15:02 +0000
committerJörg Thalheim <Mic92@users.noreply.github.com>2023-11-14 09:37:22 +0100
commitc3104c4cad14301c1866f76f0d374364feae4d29 (patch)
tree59598a3376febd2c2de11aa3fa005bac6acdbfb5 /nixos/doc
parent39bf010bb0831d061463ac9d0869dc59a1d5807c (diff)
downloadnixlib-c3104c4cad14301c1866f76f0d374364feae4d29.tar
nixlib-c3104c4cad14301c1866f76f0d374364feae4d29.tar.gz
nixlib-c3104c4cad14301c1866f76f0d374364feae4d29.tar.bz2
nixlib-c3104c4cad14301c1866f76f0d374364feae4d29.tar.lz
nixlib-c3104c4cad14301c1866f76f0d374364feae4d29.tar.xz
nixlib-c3104c4cad14301c1866f76f0d374364feae4d29.tar.zst
nixlib-c3104c4cad14301c1866f76f0d374364feae4d29.zip
buildGoModule: deprecate vendorSha256 attribute
Diffstat (limited to 'nixos/doc')
-rw-r--r--nixos/doc/manual/release-notes/rl-2311.section.md2
1 files changed, 2 insertions, 0 deletions
diff --git a/nixos/doc/manual/release-notes/rl-2311.section.md b/nixos/doc/manual/release-notes/rl-2311.section.md
index 051c0e7c663b..4f1a89781e1b 100644
--- a/nixos/doc/manual/release-notes/rl-2311.section.md
+++ b/nixos/doc/manual/release-notes/rl-2311.section.md
@@ -521,6 +521,8 @@ The module update takes care of the new config syntax and the data itself (user
 
 - The Home Assistant module now offers support for installing custom components and lovelace modules. Available at [`services.home-assistant.customComponents`](#opt-services.home-assistant.customComponents) and [`services.home-assistant.customLovelaceModules`](#opt-services.home-assistant.customLovelaceModules).
 
+- The argument `vendorSha256` of `buildGoModule` is deprecated. Use `vendorHash` instead. ([\#259999](https://github.com/NixOS/nixpkgs/pull/259999))
+
 ## Nixpkgs internals {#sec-release-23.11-nixpkgs-internals}
 
 - The use of `sourceRoot = "source";`, `sourceRoot = "source/subdir";`, and similar lines in package derivations using the default `unpackPhase` is deprecated as it requires `unpackPhase` to always produce a directory named "source". Use `sourceRoot = src.name`, `sourceRoot = "${src.name}/subdir";`, or `setSourceRoot = "sourceRoot=$(echo */subdir)";` or similar instead.