diff options
author | Domen Kožar <domen@dev.si> | 2021-06-21 19:40:51 +0200 |
---|---|---|
committer | Domen Kožar <domen@dev.si> | 2021-06-21 19:40:51 +0200 |
commit | 9676c9f6a31656beae6dc65e79ab2f621ccc1f86 (patch) | |
tree | 053d39aac66fff3b1247bb4202c28e2f9769ace8 /flake.nix | |
parent | 7c3cb8506fb3046cb97e1b98f3b1195d45c500f3 (diff) |
perlBindings: fix build on aarch64-darwin
Diffstat (limited to 'flake.nix')
-rw-r--r-- | flake.nix | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -256,7 +256,8 @@ boost nlohmann_json ] - ++ lib.optional (stdenv.isLinux || stdenv.isDarwin) libsodium; + ++ lib.optional (stdenv.isLinux || stdenv.isDarwin) libsodium + ++ lib.optional stdenv.isDarwin darwin.apple_sdk.frameworks.Security; configureFlags = '' --with-dbi=${perlPackages.DBI}/${pkgs.perl.libPrefix} |