mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-12 04:35:41 +03:00
python314: add zstd dependency (#409307)
This commit is contained in:
parent
01a88a33bb
commit
554c97036d
1 changed files with 6 additions and 0 deletions
|
@ -24,6 +24,7 @@
|
||||||
sqlite,
|
sqlite,
|
||||||
xz,
|
xz,
|
||||||
zlib,
|
zlib,
|
||||||
|
zstd,
|
||||||
|
|
||||||
# platform-specific dependencies
|
# platform-specific dependencies
|
||||||
bashNonInteractive,
|
bashNonInteractive,
|
||||||
|
@ -197,6 +198,8 @@ let
|
||||||
++ optionals (!stdenv.hostPlatform.isDarwin) [
|
++ optionals (!stdenv.hostPlatform.isDarwin) [
|
||||||
autoconf-archive # needed for AX_CHECK_COMPILE_FLAG
|
autoconf-archive # needed for AX_CHECK_COMPILE_FLAG
|
||||||
autoreconfHook
|
autoreconfHook
|
||||||
|
]
|
||||||
|
++ optionals (!stdenv.hostPlatform.isDarwin || passthru.pythonAtLeast "3.14") [
|
||||||
pkg-config
|
pkg-config
|
||||||
]
|
]
|
||||||
++ optionals (stdenv.hostPlatform != stdenv.buildPlatform) [
|
++ optionals (stdenv.hostPlatform != stdenv.buildPlatform) [
|
||||||
|
@ -228,6 +231,9 @@ let
|
||||||
xz
|
xz
|
||||||
zlib
|
zlib
|
||||||
]
|
]
|
||||||
|
++ optionals (passthru.pythonAtLeast "3.14") [
|
||||||
|
zstd
|
||||||
|
]
|
||||||
++ optionals bluezSupport [
|
++ optionals bluezSupport [
|
||||||
bluez
|
bluez
|
||||||
]
|
]
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue