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

24 lines
674 B
Nix
Raw Normal View History

2019-02-13 14:39:22 +03:00
{ stdenv, rustPlatform, fetchFromGitHub }:
rustPlatform.buildRustPackage rec {
2019-03-16 00:38:44 +03:00
pname = "broot";
version = "0.10.2";
2019-02-13 14:39:22 +03:00
src = fetchFromGitHub {
owner = "Canop";
2019-03-16 00:38:44 +03:00
repo = pname;
2019-02-13 14:39:22 +03:00
rev = "v${version}";
sha256 = "1wisqb4cqdgsnjvmpgxbzs9zcw6npqw1kqxxs8mn33sxlikhbf2l";
2019-02-13 14:39:22 +03:00
};
cargoSha256 = "09gnyj97akychin1axp9kcww3c04xx7x1qnplhs2yxfki62r4y2b";
2019-02-13 14:39:22 +03:00
meta = with stdenv.lib; {
description = "An interactive tree view, a fuzzy search, a balanced BFS descent and customizable commands";
2019-03-16 00:38:44 +03:00
homepage = "https://dystroy.org/broot/";
2019-02-13 14:39:22 +03:00
maintainers = with maintainers; [ magnetophon ];
license = with licenses; [ mit ];
platforms = platforms.all;
};
}