broot: init at 0.6.0

This commit is contained in:
Bart Brouns 2019-02-13 12:39:22 +01:00 committed by Dmitry Kalinkin
parent f4d915a624
commit 4a82f6ac58
2 changed files with 25 additions and 0 deletions

View file

@ -0,0 +1,23 @@
{ stdenv, rustPlatform, fetchFromGitHub }:
rustPlatform.buildRustPackage rec {
name = "broot-${version}";
version = "0.6.0";
src = fetchFromGitHub {
owner = "Canop";
repo = "broot";
rev = "v${version}";
sha256 = "192qqlqym8lpskh6f7sf5fanybjwhdqs1cgl6mqm35763fa5jrdj";
};
cargoSha256 = "059iylnkjb7lxxs9v2b6h05nidwgcj6kqyhcq58lalkhb63srb1q";
meta = with stdenv.lib; {
description = "An interactive tree view, a fuzzy search, a balanced BFS descent and customizable commands";
homepage = "https://github.com/Canop/broot";
maintainers = with maintainers; [ magnetophon ];
license = with licenses; [ mit ];
platforms = platforms.all;
};
}

View file

@ -994,6 +994,8 @@ in
};
bro = callPackage ../applications/networking/ids/bro { };
broot = callPackage ../tools/misc/broot { };
bruteforce-luks = callPackage ../tools/security/bruteforce-luks { };
breakpointHook = assert stdenv.isLinux;