···928928929929- `buildNimSbom` was added as an alternative to `buildNimPackage`. `buildNimSbom` uses [SBOMs](https://cyclonedx.org/) to generate packages whereas `buildNimPackage` uses a custom JSON lockfile format.
930930931931-- The default version of `z3` has been updated from 4.8 to 4.13. There are still a few packages that need specific 4.8 versions; those will continue to be maintained.
932932-933931## Detailed Migration Information {#sec-release-24.11-migration}
934932935933### `sound` options removal {#sec-release-24.11-migration-sound}
+2
nixos/doc/manual/release-notes/rl-2505.section.md
···233233234234- `nodePackages.meshcommander` has been removed, as the package was deprecated by Intel.
235235236236+- The default version of `z3` has been updated from 4.8 to 4.13. There are still a few packages that need specific older versions; those will continue to be maintained as long as other packages depend on them but may be removed in the future.
237237+236238- `kanata` was updated to v1.7.0, which introduces several breaking changes.
237239 See the release notes of
238240 [v1.7.0](https://github.com/jtroo/kanata/releases/tag/v1.7.0)
···11+diff --git a/src/main.rs b/src/main.rs
22+index f720d4c..a3c6c85 100644
33+--- a/src/main.rs
44++++ b/src/main.rs
55+@@ -325,6 +325,7 @@ async fn main () -> Result<()> {
66+ .value_name("APP")
77+ .num_args(1)
88+ .value_parser(["mp4decrypt", "shaka"])
99++ .default_value("shaka")
1010+ .help("Application to use to decrypt encrypted media streams (either mp4decrypt or shaka)."))
1111+ .arg(Arg::new("save-fragments")
1212+ .long("save-fragments")
+3-4
pkgs/by-name/fa/fan2go/package.nix
···18181919 vendorHash = "sha256-ad0e/cxbcU/KfPDOdD46KdCcvns83dgGDAyLLQiGyiA=";
20202121+ buildInputs = [ lm_sensors ];
2222+2123 postConfigure = ''
2224 substituteInPlace vendor/github.com/md14454/gosensors/gosensors.go \
2323- --replace-fail '"/etc/sensors3.conf"' '"${lm_sensors}/etc/sensors3.conf"'
2525+ --replace-fail '"/etc/sensors3.conf"' '"${lib.getLib lm_sensors}/etc/sensors3.conf"'
24262527 # Uses /usr/bin/echo, and even if we patch that, it refuses to execute any
2628 # binary without being able to confirm that it's owned by root, which isn't
2729 # possible under the sandbox.
2830 rm internal/fans/cmd_test.go
2931 '';
3030-3131- CGO_CFLAGS = "-I ${lm_sensors}/include";
3232- CGO_LDFLAGS = "-L ${lm_sensors}/lib";
33323433 meta = with lib; {
3534 description = "Simple daemon providing dynamic fan speed control based on temperature sensors";
+7
pkgs/by-name/fr/freecad/README.md
···11+This package supports the following parameters:
22+33+- withWayland (default: true): when false, set QT_QPA_PLATFORM to xcb
44+- spaceNavSupport (enabled by default on linux): whether to enable
55+ [spacenavd support](https://spacenav.sourceforge.net/)
66+- ifcSupport (default: false): whether to enable ifc support through
77+ ifcopenshell
···5050 "test_disk_used" # test_disk_used is broken: https://github.com/joblib/joblib/issues/57
5151 "test_parallel_call_cached_function_defined_in_jupyter" # jupyter not available during tests
5252 "test_nested_parallel_warnings" # tests is flaky under load
5353+ "test_memory" # tests - and the module itself - assume strictatime mount for build directory
5354 ]
5455 ++ lib.optionals stdenv.hostPlatform.isDarwin [
5556 "test_dispatch_multiprocessing" # test_dispatch_multiprocessing is broken only on Darwin.