mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 15:11:35 +00:00
48 lines
1.4 KiB
Nix
48 lines
1.4 KiB
Nix
{ stdenv, rustPlatform, fetchFromGitHub, coreutils, libiconv, Security, installShellFiles }:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "broot";
|
|
version = "0.18.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Canop";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "0lmcjc08902h4mi6qx3x2v1xa4w980xvmbrbfm59lis856whaqww";
|
|
};
|
|
|
|
cargoSha256 = "1bgrm6a7p7xl95ljk87g4bxv1insl14yxc895yszr0my3ksmpzqh";
|
|
|
|
nativeBuildInputs = [ installShellFiles ];
|
|
|
|
buildInputs = stdenv.lib.optionals stdenv.isDarwin [ libiconv Security ];
|
|
|
|
postPatch = ''
|
|
substituteInPlace src/verb/builtin.rs --replace '"/bin/' '"${coreutils}/bin/'
|
|
|
|
# Fill the version stub in the man page. We can't fill the date
|
|
# stub reproducibly.
|
|
substitute man/page man/broot.1 \
|
|
--replace "#version" "${version}"
|
|
'';
|
|
|
|
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}
|
|
|
|
installManPage man/broot.1
|
|
'';
|
|
|
|
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;
|
|
};
|
|
}
|