1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-23 07:26:54 +00:00
nixpkgs/pkgs/tools/misc/broot/default.nix

24 lines
689 B
Nix
Raw Normal View History

2019-02-13 11:39:22 +00:00
{ stdenv, rustPlatform, fetchFromGitHub }:
rustPlatform.buildRustPackage rec {
name = "broot-${version}";
2019-03-07 21:16:25 +00:00
version = "0.7.0";
2019-02-13 11:39:22 +00:00
src = fetchFromGitHub {
owner = "Canop";
repo = "broot";
rev = "v${version}";
2019-03-07 21:16:25 +00:00
sha256 = "0k1xxi9idpy73nvp3hmx5rkqj17zsz2cigab4nkc6man80i1iynr";
2019-02-13 11:39:22 +00:00
};
2019-02-23 20:22:48 +00:00
cargoSha256 = "0722nzip3rl47rjrzyb2y3xbsy9ww1ldjv84qbzyy3flcyh2adjm";
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";
homepage = "https://github.com/Canop/broot";
maintainers = with maintainers; [ magnetophon ];
license = with licenses; [ mit ];
platforms = platforms.all;
};
}