2020-02-09 09:10:57 +00:00
|
|
|
{ stdenv, rustPlatform, fetchFromGitHub, coreutils, libiconv, Security, installShellFiles }:
|
2019-02-13 11:39:22 +00:00
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
2019-03-15 21:38:44 +00:00
|
|
|
pname = "broot";
|
2020-06-12 16:25:08 +01:00
|
|
|
version = "0.15.1";
|
2019-02-13 11:39:22 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "Canop";
|
2019-03-15 21:38:44 +00:00
|
|
|
repo = pname;
|
2019-02-13 11:39:22 +00:00
|
|
|
rev = "v${version}";
|
2020-06-12 16:25:08 +01:00
|
|
|
sha256 = "1ggzx4w69fmvaxm5gfqhh8ncr2mdx528zm6vwrrwz165lga2fvw6";
|
2019-02-13 11:39:22 +00:00
|
|
|
};
|
|
|
|
|
2020-06-12 16:25:08 +01:00
|
|
|
cargoSha256 = "0gcq0fww9hl3avh3qcnpnwmpwda4cymr7x3kd3frdizrs8i643mr";
|
2019-02-13 11:39:22 +00:00
|
|
|
|
2020-01-12 20:53:58 +00:00
|
|
|
nativeBuildInputs = [ installShellFiles ];
|
|
|
|
|
2020-02-09 09:10:57 +00:00
|
|
|
buildInputs = stdenv.lib.optionals stdenv.isDarwin [ libiconv Security ];
|
|
|
|
|
2020-01-11 18:16:56 +00:00
|
|
|
postPatch = ''
|
2020-06-12 16:25:08 +01:00
|
|
|
substituteInPlace src/verb/builtin.rs --replace '"/bin/' '"${coreutils}/bin/'
|
2020-01-11 18:16:56 +00:00
|
|
|
'';
|
|
|
|
|
2020-01-12 20:53:58 +00:00
|
|
|
postInstall = ''
|
|
|
|
# install shell completion files
|
2020-03-20 06:46:39 +00:00
|
|
|
OUT_DIR=$releaseDir/build/broot-*/out
|
2020-01-12 20:53:58 +00:00
|
|
|
|
|
|
|
installShellCompletion --bash $OUT_DIR/{br,broot}.bash
|
|
|
|
installShellCompletion --fish $OUT_DIR/{br,broot}.fish
|
|
|
|
installShellCompletion --zsh $OUT_DIR/{_br,_broot}
|
|
|
|
'';
|
|
|
|
|
2019-02-13 11:39:22 +00:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
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/";
|
2019-02-13 11:39:22 +00:00
|
|
|
maintainers = with maintainers; [ magnetophon ];
|
|
|
|
license = with licenses; [ mit ];
|
|
|
|
platforms = platforms.all;
|
|
|
|
};
|
|
|
|
}
|