2024-07-19 03:44:32 -06:00
|
|
|
{
|
|
|
|
lib,
|
|
|
|
buildGoModule,
|
|
|
|
fetchFromGitHub,
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildGoModule rec {
|
|
|
|
pname = "gotree";
|
2024-08-21 04:33:50 -06:00
|
|
|
version = "1.4.1";
|
2024-07-19 03:44:32 -06:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "elbachir-one";
|
|
|
|
repo = "gt";
|
|
|
|
rev = "v${version}";
|
2024-08-21 04:33:50 -06:00
|
|
|
hash = "sha256-sWKqfDWwMfj4shg/MxHu7Zr4WE5pxAzHHmsjU3jQY10=";
|
2024-07-19 03:44:32 -06:00
|
|
|
};
|
|
|
|
|
|
|
|
vendorHash = null;
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Display a tree of files and directories";
|
|
|
|
homepage = "https://github.com/elbachir-one/gt";
|
|
|
|
changelog = "https://github.com/elbachir-one/gt/releases/tag/v${version}";
|
|
|
|
license = lib.licenses.bsd3;
|
|
|
|
mainProgram = "gt";
|
|
|
|
maintainers = with lib.maintainers; [ schnow265 ];
|
|
|
|
};
|
|
|
|
}
|