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