biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / by-name / go / gotree / package.nix
blobbdefbb5badb50c1ab7be7ea647ce867a73d256fb
2   lib,
3   buildGoModule,
4   fetchFromGitHub,
5 }:
7 buildGoModule rec {
8   pname = "gotree";
9   version = "1.4.1";
11   src = fetchFromGitHub {
12     owner = "elbachir-one";
13     repo = "gt";
14     rev = "v${version}";
15     hash = "sha256-sWKqfDWwMfj4shg/MxHu7Zr4WE5pxAzHHmsjU3jQY10=";
16   };
18   vendorHash = null;
20   meta = {
21     description = "Display a tree of files and directories";
22     homepage = "https://github.com/elbachir-one/gt";
23     changelog = "https://github.com/elbachir-one/gt/releases/tag/v${version}";
24     license = lib.licenses.bsd3;
25     mainProgram = "gt";
26     maintainers = with lib.maintainers; [ schnow265 ];
27   };