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

24 lines
673 B
Nix
Raw Normal View History

2019-02-13 12:39:22 +01:00
{ stdenv, rustPlatform, fetchFromGitHub }:
rustPlatform.buildRustPackage rec {
2019-03-15 22:38:44 +01:00
pname = "broot";
2019-06-08 23:20:48 +02:00
version = "0.8.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}";
2019-06-08 23:20:48 +02:00
sha256 = "0xgjpdy12b77hgf0vfgs2ayxaajjv8vs0v8fn4rnrgn3hz8ldhyc";
2019-02-13 12:39:22 +01:00
};
2019-06-08 23:20:48 +02:00
cargoSha256 = "1hsrp9xbi6bj3461y58hmzfwakx4vakpzkjvi6174gy8xq7cdvg1";
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;
};
}