Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

29 lines
624 B
Nix
Raw Permalink Normal View History

2025-10-09 14:15:47 +02:00
{
lib,
buildGoModule,
fetchFromGitHub,
}:
buildGoModule rec {
pname = "gotree";
version = "1.4.3";
src = fetchFromGitHub {
owner = "elbachir-one";
repo = "gt";
rev = "v${version}";
hash = "sha256-0wYuIaGkJHSD8La1yfBYNPDB8ETtID8e5lgahqQgjLM=";
};
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 ];
};
}