mirror of
https://github.com/NixOS/nix
synced 2025-06-25 14:51:16 +02:00
Fix perlBindings build on macOS
https://hydra.nixos.org/build/276515695
(cherry picked from commit 750db54bfc
)
This commit is contained in:
parent
e89f7906db
commit
185a92ba6c
1 changed files with 2 additions and 1 deletions
|
@ -38,7 +38,8 @@ perl.pkgs.toPerlModule (stdenv.mkDerivation {
|
|||
boost
|
||||
]
|
||||
++ lib.optional (stdenv.isLinux || stdenv.isDarwin) libsodium
|
||||
++ lib.optional stdenv.isDarwin darwin.apple_sdk.frameworks.Security;
|
||||
++ lib.optional stdenv.isDarwin darwin.apple_sdk.frameworks.Security
|
||||
++ lib.optional stdenv.hostPlatform.isDarwin darwin.apple_sdk.libs.sandbox;
|
||||
|
||||
configureFlags = [
|
||||
"--with-dbi=${perlPackages.DBI}/${perl.libPrefix}"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue