f34ce41345
GitOrigin-RevId: b73c2221a46c13557b1b3be9c2070cc42cf01eb3
28 lines
624 B
Nix
28 lines
624 B
Nix
{
|
|
lib,
|
|
buildGoModule,
|
|
fetchFromGitHub,
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "gotree";
|
|
version = "0.3.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "elbachir-one";
|
|
repo = "gt";
|
|
rev = "v${version}";
|
|
hash = "sha256-0CI9dQXMlED3VoZwB+QI8kUVrUIx9vGIgNZ7mNsZGgs=";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|