nixpkgs/pkgs/tools/misc/broot/default.nix
2019-02-28 09:55:09 -06:00

24 lines
689 B
Nix

{ stdenv, rustPlatform, fetchFromGitHub }:
rustPlatform.buildRustPackage rec {
name = "broot-${version}";
version = "0.6.3";
src = fetchFromGitHub {
owner = "Canop";
repo = "broot";
rev = "v${version}";
sha256 = "1080rhmm3q5h00q6xk2xzbjlvr5n7gq5fscvgkyk1vwbbyh9vc79";
};
cargoSha256 = "0722nzip3rl47rjrzyb2y3xbsy9ww1ldjv84qbzyy3flcyh2adjm";
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;
};
}