Merge pull request #328387 from schnow265/master

gotree: init at 0.2.0
This commit is contained in:
Peder Bergebakken Sundt 2024-07-24 16:59:30 +02:00 committed by GitHub
commit 934b5035b4
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -0,0 +1,28 @@
{
lib,
buildGoModule,
fetchFromGitHub,
}:
buildGoModule rec {
pname = "gotree";
version = "0.2.0";
src = fetchFromGitHub {
owner = "elbachir-one";
repo = "gt";
rev = "v${version}";
hash = "sha256-baK2pA+jVTeMy06jrn2VrQZUsMCf7wpX7gX8mnnDh3A=";
};
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 ];
};
}