at 24.11-pre 23 lines 599 B view raw
1{ buildGoModule, fetchFromGitHub, lib }: 2 3buildGoModule rec { 4 pname = "gotestfmt"; 5 version = "2.5.0"; 6 7 src = fetchFromGitHub { 8 owner = "gotesttools"; 9 repo = pname; 10 rev = "v${version}"; 11 hash = "sha256-7mLn2axlHoXau9JtLhk1zwzhxkFGHgYPo7igI+IAsP4="; 12 }; 13 14 vendorHash = null; 15 16 meta = with lib; { 17 description = "Go test output for humans"; 18 homepage = "https://github.com/gotesttools/gotestfmt"; 19 changelog = "https://github.com/GoTestTools/gotestfmt/releases/tag/v${version}"; 20 license = licenses.unlicense; 21 maintainers = with maintainers; [ urandom ]; 22 }; 23}