nixpkgs/pkgs/tools/misc/broot/default.nix

82 lines
2 KiB
Nix
Raw Normal View History

2021-04-23 07:00:26 +00:00
{ lib
, stdenv
, rustPlatform
2020-08-26 12:59:14 +00:00
, fetchCrate
, installShellFiles
, makeWrapper
2021-05-12 07:46:49 +00:00
, pkg-config
, libgit2
, oniguruma
, libiconv
, Security
2021-05-12 07:46:49 +00:00
, zlib
}:
2019-02-13 11:39:22 +00:00
rustPlatform.buildRustPackage rec {
2019-03-15 21:38:44 +00:00
pname = "broot";
2021-05-12 07:46:49 +00:00
version = "1.4.0";
2019-02-13 11:39:22 +00:00
2020-08-26 12:59:14 +00:00
src = fetchCrate {
inherit pname version;
2021-05-12 07:46:49 +00:00
sha256 = "sha256-6UveXa0rMWt5FbmhB0CsYRMGMXxL8FB/XivB4Ec93PY=";
2019-02-13 11:39:22 +00:00
};
2021-05-12 07:46:49 +00:00
cargoHash = "sha256-c6U1ZOaXZ7RnKD7q0WTkam9gL8SL/naSeHGbB5I82lk=";
2019-02-13 11:39:22 +00:00
nativeBuildInputs = [
installShellFiles
2021-05-12 07:46:49 +00:00
makeWrapper
pkg-config
];
2021-05-12 07:46:49 +00:00
buildInputs = [ libgit2 oniguruma ] ++ lib.optionals stdenv.isDarwin [
libiconv
Security
zlib
];
2021-05-12 07:46:49 +00:00
RUSTONIG_SYSTEM_LIBONIG = true;
postPatch = ''
2020-06-26 11:10:20 +00:00
# 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 = ''
# Do not nag users about installing shell integration, since
# it is impure.
wrapProgram $out/bin/broot \
--set BR_INSTALL no
# Install shell function for bash.
$out/bin/broot --print-shell-function bash > br.bash
install -Dm0444 -t $out/etc/profile.d br.bash
# Install shell function for zsh.
$out/bin/broot --print-shell-function zsh > br.zsh
install -Dm0444 br.zsh $out/share/zsh/site-functions/br
# Install shell function for fish
$out/bin/broot --print-shell-function fish > br.fish
install -Dm0444 -t $out/share/fish/vendor_functions.d br.fish
# 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}
2020-06-26 11:10:20 +00:00
installManPage man/broot.1
'';
meta = with lib; {
2019-02-13 11:39:22 +00:00
description = "An interactive tree view, a fuzzy search, a balanced BFS descent and customizable commands";
2019-03-15 21:38:44 +00:00
homepage = "https://dystroy.org/broot/";
maintainers = with maintainers; [ danieldk ];
2019-02-13 11:39:22 +00:00
license = with licenses; [ mit ];
};
}