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

40 lines
1.1 KiB
Nix
Raw Normal View History

{ stdenv, rustPlatform, fetchFromGitHub, coreutils, installShellFiles }:
2019-02-13 12:39:22 +01:00
rustPlatform.buildRustPackage rec {
2019-03-15 22:38:44 +01:00
pname = "broot";
2020-01-23 10:20:00 +01:00
version = "0.12.0";
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-01-23 10:20:00 +01:00
sha256 = "0z31yizjczr59z6vxgjc3lqlcr3m21bi5ly8pxp3s3w7nbfr369q";
2019-02-13 12:39:22 +01:00
};
2020-01-23 10:20:00 +01:00
cargoSha256 = "0cwj63907xwy1ali9p2wnzhlcb80c6nhf684fbbsg7awiyqgdak3";
verifyCargoDeps = true;
2019-02-13 12:39:22 +01: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 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;
};
}