mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-07-13 21:50:33 +03:00
cpython: make configd optional (for sandboxed darwin bootstraps)
This commit is contained in:
parent
48a34be41c
commit
0f75e6bef7
1 changed files with 1 additions and 1 deletions
|
@ -128,7 +128,7 @@ let
|
||||||
++ optional hostPlatform.isCygwin expat
|
++ optional hostPlatform.isCygwin expat
|
||||||
++ [ db gdbm ncurses sqlite readline ]
|
++ [ db gdbm ncurses sqlite readline ]
|
||||||
++ optionals x11Support [ tcl tk xlibsWrapper libX11 ]
|
++ optionals x11Support [ tcl tk xlibsWrapper libX11 ]
|
||||||
++ optionals stdenv.isDarwin [ CF configd ];
|
++ optionals stdenv.isDarwin ([ CF ] ++ optional (configd != null) configd);
|
||||||
|
|
||||||
mkPaths = paths: {
|
mkPaths = paths: {
|
||||||
C_INCLUDE_PATH = makeSearchPathOutput "dev" "include" paths;
|
C_INCLUDE_PATH = makeSearchPathOutput "dev" "include" paths;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue