mirror of
https://github.com/ryantm/agenix.git
synced 2024-11-22 09:40:47 +03:00
Need Foundation to build i18n-embed-fl on darwin
This commit is contained in:
parent
37b1d2aa3f
commit
cd916fad67
1 changed files with 4 additions and 1 deletions
|
@ -15,7 +15,10 @@ rustPlatform.buildRustPackage rec {
|
|||
|
||||
nativeBuildInputs = [ installShellFiles ];
|
||||
|
||||
buildInputs = stdenv.lib.optionals stdenv.isDarwin [ darwin.Security ];
|
||||
buildInputs = stdenv.lib.optionals stdenv.isDarwin [
|
||||
darwin.Security
|
||||
darwin.apple_sdk.frameworks.Foundation
|
||||
];
|
||||
|
||||
postBuild = ''
|
||||
cargo run --example generate-docs
|
||||
|
|
Loading…
Reference in a new issue