41 lines
1.2 KiB
Nix
41 lines
1.2 KiB
Nix
{ stdenv, rustPlatform, fetchFromGitHub, coreutils, libiconv, Security, installShellFiles }:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "broot";
|
|
version = "0.16.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Canop";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "1vhwv9yb8acz4iq9zmg1qkf072z1py84lz4ddj8gmg6rq7g8n4mb";
|
|
};
|
|
|
|
cargoSha256 = "19z6d72ssqwm8i7bnfqgsndy1f2wxzkvhs8swy16gnqfqjqdf26d";
|
|
|
|
nativeBuildInputs = [ installShellFiles ];
|
|
|
|
buildInputs = stdenv.lib.optionals stdenv.isDarwin [ libiconv Security ];
|
|
|
|
postPatch = ''
|
|
substituteInPlace src/verb/builtin.rs --replace '"/bin/' '"${coreutils}/bin/'
|
|
'';
|
|
|
|
postInstall = ''
|
|
# install shell completion files
|
|
OUT_DIR=$releaseDir/build/broot-*/out
|
|
|
|
installShellCompletion --bash $OUT_DIR/{br,broot}.bash
|
|
installShellCompletion --fish $OUT_DIR/{br,broot}.fish
|
|
installShellCompletion --zsh $OUT_DIR/{_br,_broot}
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "An interactive tree view, a fuzzy search, a balanced BFS descent and customizable commands";
|
|
homepage = "https://dystroy.org/broot/";
|
|
maintainers = with maintainers; [ magnetophon ];
|
|
license = with licenses; [ mit ];
|
|
platforms = platforms.all;
|
|
};
|
|
}
|