Merge pull request #276030 from qowoz/broot

broot: fix darwin build
This commit is contained in:
Vlad M 2023-12-22 22:47:10 +02:00 committed by GitHub
commit 2704d4f174
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 1 deletions

View File

@ -8,6 +8,7 @@
, libgit2
, oniguruma
, libiconv
, Foundation
, Security
, xorg
, zlib
@ -35,6 +36,7 @@ rustPlatform.buildRustPackage rec {
];
buildInputs = [ libgit2 oniguruma xorg.libxcb ] ++ lib.optionals stdenv.isDarwin [
Foundation
libiconv
Security
zlib

View File

@ -4524,7 +4524,7 @@ with pkgs;
};
broot = callPackage ../tools/misc/broot {
inherit (darwin.apple_sdk.frameworks) Security;
inherit (darwin.apple_sdk.frameworks) Foundation Security;
};
bruteforce-luks = callPackage ../tools/security/bruteforce-luks { };