depot/pkgs/by-name/go/gotree/package.nix
Luke Granger-Brown 57725ef3ec Squashed 'third_party/nixpkgs/' content from commit 76612b17c0ce
git-subtree-dir: third_party/nixpkgs
git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
2024-11-10 23:59:47 +00:00

28 lines
624 B
Nix

{
lib,
buildGoModule,
fetchFromGitHub,
}:
buildGoModule rec {
pname = "gotree";
version = "1.4.1";
src = fetchFromGitHub {
owner = "elbachir-one";
repo = "gt";
rev = "v${version}";
hash = "sha256-sWKqfDWwMfj4shg/MxHu7Zr4WE5pxAzHHmsjU3jQY10=";
};
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 ];
};
}