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

72 lines
2.0 KiB
Nix
Raw Normal View History

{ stdenv
, rustPlatform
, fetchFromGitHub
, installShellFiles
, makeWrapper
, coreutils
, libiconv
, Security
}:
2019-02-13 12:39:22 +01:00
rustPlatform.buildRustPackage rec {
2019-03-15 22:38:44 +01:00
pname = "broot";
2020-08-10 05:10:58 +02:00
version = "0.19.4";
2019-02-13 12:39:22 +01:00
src = fetchFromGitHub {
owner = "Canop";
2019-03-15 22:38:44 +01:00
repo = pname;
2019-02-13 12:39:22 +01:00
rev = "v${version}";
2020-08-10 05:10:58 +02:00
sha256 = "0k5vv7a141ka9qpay5xccqdcy8sj0v9ywhhcdfpgii6z0wrd7mvr";
2019-02-13 12:39:22 +01:00
};
2020-08-10 05:10:58 +02:00
cargoSha256 = "18b4lh5x25mbhpffva8ygzm5ad00svm1c3r83vfw0l2f61m7vyjh";
2019-02-13 12:39:22 +01:00
nativeBuildInputs = [ makeWrapper installShellFiles ];
buildInputs = stdenv.lib.optionals stdenv.isDarwin [ libiconv Security ];
postPatch = ''
2020-06-12 17:25:08 +02:00
substituteInPlace src/verb/builtin.rs --replace '"/bin/' '"${coreutils}/bin/'
2020-06-26 13:10:20 +02: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 13:10:20 +02:00
installManPage man/broot.1
'';
2019-02-13 12:39:22 +01:00
meta = with stdenv.lib; {
description = "An interactive tree view, a fuzzy search, a balanced BFS descent and customizable commands";
2019-03-15 22:38:44 +01:00
homepage = "https://dystroy.org/broot/";
maintainers = with maintainers; [ danieldk ];
2019-02-13 12:39:22 +01:00
license = with licenses; [ mit ];
};
}