2020-08-11 11:58:38 -07:00
|
|
|
{ stdenv
|
|
|
|
, rustPlatform
|
|
|
|
, fetchFromGitHub
|
|
|
|
, installShellFiles
|
|
|
|
, makeWrapper
|
|
|
|
, coreutils
|
|
|
|
, libiconv
|
|
|
|
, Security
|
|
|
|
}:
|
2019-02-13 03:39:22 -08:00
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
2019-03-15 14:38:44 -07:00
|
|
|
pname = "broot";
|
2020-08-09 20:10:58 -07:00
|
|
|
version = "0.19.4";
|
2019-02-13 03:39:22 -08:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "Canop";
|
2019-03-15 14:38:44 -07:00
|
|
|
repo = pname;
|
2019-02-13 03:39:22 -08:00
|
|
|
rev = "v${version}";
|
2020-08-09 20:10:58 -07:00
|
|
|
sha256 = "0k5vv7a141ka9qpay5xccqdcy8sj0v9ywhhcdfpgii6z0wrd7mvr";
|
2019-02-13 03:39:22 -08:00
|
|
|
};
|
|
|
|
|
2020-08-09 20:10:58 -07:00
|
|
|
cargoSha256 = "18b4lh5x25mbhpffva8ygzm5ad00svm1c3r83vfw0l2f61m7vyjh";
|
2019-02-13 03:39:22 -08:00
|
|
|
|
2020-08-11 11:58:38 -07:00
|
|
|
nativeBuildInputs = [ makeWrapper installShellFiles ];
|
2020-01-12 12:53:58 -08:00
|
|
|
|
2020-02-09 01:10:57 -08:00
|
|
|
buildInputs = stdenv.lib.optionals stdenv.isDarwin [ libiconv Security ];
|
|
|
|
|
2020-01-11 10:16:56 -08:00
|
|
|
postPatch = ''
|
2020-06-12 08:25:08 -07:00
|
|
|
substituteInPlace src/verb/builtin.rs --replace '"/bin/' '"${coreutils}/bin/'
|
2020-06-26 04:10:20 -07: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}"
|
2020-01-11 10:16:56 -08:00
|
|
|
'';
|
|
|
|
|
2020-01-12 12:53:58 -08:00
|
|
|
postInstall = ''
|
2020-08-11 11:58:38 -07:00
|
|
|
# Do not nag users about installing shell integration, since
|
|
|
|
# it is impure.
|
|
|
|
wrapProgram $out/bin/broot \
|
|
|
|
--set BR_INSTALL no
|
|
|
|
|
2020-01-12 12:53:58 -08:00
|
|
|
# install shell completion files
|
2020-03-19 23:46:39 -07:00
|
|
|
OUT_DIR=$releaseDir/build/broot-*/out
|
2020-01-12 12:53:58 -08:00
|
|
|
|
|
|
|
installShellCompletion --bash $OUT_DIR/{br,broot}.bash
|
|
|
|
installShellCompletion --fish $OUT_DIR/{br,broot}.fish
|
|
|
|
installShellCompletion --zsh $OUT_DIR/{_br,_broot}
|
2020-06-26 04:10:20 -07:00
|
|
|
|
|
|
|
installManPage man/broot.1
|
2020-01-12 12:53:58 -08:00
|
|
|
'';
|
|
|
|
|
2019-02-13 03:39:22 -08:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "An interactive tree view, a fuzzy search, a balanced BFS descent and customizable commands";
|
2019-03-15 14:38:44 -07:00
|
|
|
homepage = "https://dystroy.org/broot/";
|
2020-08-11 07:40:56 -07:00
|
|
|
maintainers = with maintainers; [ danieldk ];
|
2019-02-13 03:39:22 -08:00
|
|
|
license = with licenses; [ mit ];
|
|
|
|
platforms = platforms.all;
|
|
|
|
};
|
|
|
|
}
|