nixpkgs/pkgs/tools/system/tre-command/default.nix

29 lines
670 B
Nix
Raw Normal View History

{ rustPlatform, fetchFromGitHub, lib, installShellFiles }:
rustPlatform.buildRustPackage rec {
pname = "tre-command";
2020-09-26 09:03:09 +00:00
version = "0.3.3";
src = fetchFromGitHub {
owner = "dduan";
repo = "tre";
rev = "v${version}";
2020-09-26 09:03:09 +00:00
sha256 = "10c8mpqzpw7m3vrm2vl2rx678z3c37hxpqyh3fn83dlh9f4f0j87";
};
2020-09-26 09:03:09 +00:00
cargoSha256 = "0jd6cfs2zi2n34kirpsy12l76whaqwm1pkqa57w1ms5z658z07wj";
nativeBuildInputs = [ installShellFiles ];
preFixup = ''
installManPage manual/tre.1
'';
meta = with lib; {
description = "Tree command, improved";
homepage = "https://github.com/dduan/tre";
license = licenses.mit;
maintainers = [ maintainers.dduan ];
};
}