Merge remote-tracking branch 'origin/master' into staging-next

This commit is contained in:
Martin Weinelt
2025-05-31 13:30:31 +02:00
54 changed files with 1004 additions and 819 deletions
@@ -26,6 +26,7 @@
sqlite,
xz,
zlib,
zstd,
# platform-specific dependencies
bashNonInteractive,
@@ -202,6 +203,8 @@ let
++ optionals (!stdenv.hostPlatform.isDarwin) [
autoconf-archive # needed for AX_CHECK_COMPILE_FLAG
autoreconfHook
]
++ optionals (!stdenv.hostPlatform.isDarwin || passthru.pythonAtLeast "3.14") [
pkg-config
]
++ optionals (stdenv.hostPlatform != stdenv.buildPlatform) [
@@ -231,6 +234,9 @@ let
xz
zlib
]
++ optionals (passthru.pythonAtLeast "3.14") [
zstd
]
++ optionals withMpdecimal [
mpdecimal
]