Merge pull request #146128 from iAmMrinal0/update/broot

broot: 1.6.6 -> 1.7.1
This commit is contained in:
figsoda 2021-11-15 14:13:47 -05:00 committed by GitHub
commit c6cb804033
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 4 deletions

View file

@ -9,19 +9,20 @@
, oniguruma , oniguruma
, libiconv , libiconv
, Security , Security
, libxcb
, zlib , zlib
}: }:
rustPlatform.buildRustPackage rec { rustPlatform.buildRustPackage rec {
pname = "broot"; pname = "broot";
version = "1.6.6"; version = "1.7.1";
src = fetchCrate { src = fetchCrate {
inherit pname version; inherit pname version;
sha256 = "sha256-Aezi005CKhGwCRZ2HwxFRRORBvVoZEzljTcKQZ8b8XI="; sha256 = "sha256-Gg60jeDfHNKUYynJRgN4oLWhcdApWUdO5kRwl5hrFMM=";
}; };
cargoHash = "sha256-d06lvS5ajXPY/AwmE2rkya82mAOeEv04EtBElDvX2+I="; cargoHash = "sha256-xsTlFfgX3Np3M/RqmK30DZBCrY1OXnEkjqBDI+ffd/U=";
nativeBuildInputs = [ nativeBuildInputs = [
installShellFiles installShellFiles
@ -29,7 +30,7 @@ rustPlatform.buildRustPackage rec {
pkg-config pkg-config
]; ];
buildInputs = [ libgit2 oniguruma ] ++ lib.optionals stdenv.isDarwin [ buildInputs = [ libgit2 oniguruma libxcb ] ++ lib.optionals stdenv.isDarwin [
libiconv libiconv
Security Security
zlib zlib

View file

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