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

39 lines
1.1 KiB
Nix
Raw Normal View History

{ stdenv, rustPlatform, fetchFromGitHub, coreutils, installShellFiles }:
2019-02-13 11:39:22 +00:00
rustPlatform.buildRustPackage rec {
2019-03-15 21:38:44 +00:00
pname = "broot";
2020-01-12 21:09:43 +00:00
version = "0.11.8";
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-01-12 21:09:43 +00:00
sha256 = "1pbjlfwv4s50s731ryrcc54200g2i04acdxrxk4kpcvi6b19kbky";
2019-02-13 11:39:22 +00:00
};
2020-01-12 21:09:43 +00:00
cargoSha256 = "07ncclp4yqqr2lncw4bbcmknm09qzmdcq8iwkhyyfiy3fpyw9hqc";
2019-02-13 11:39:22 +00:00
nativeBuildInputs = [ installShellFiles ];
postPatch = ''
substituteInPlace src/verb_store.rs --replace '"/bin/' '"${coreutils}/bin/'
'';
postInstall = ''
# install shell completion files
OUT_DIR=target/release/build/broot-*/out
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;
};
}