at 22.05-pre 26 lines 619 B view raw
1{ lib, buildGoModule, fetchFromGitHub }: 2 3buildGoModule rec { 4 pname = "richgo"; 5 version = "0.3.9"; 6 7 src = fetchFromGitHub { 8 owner = "kyoh86"; 9 repo = "richgo"; 10 rev = "v${version}"; 11 sha256 = "sha256-yVt0iFH9tYCeIWJC16ve988xBXgt96357YiHfsxai7g="; 12 }; 13 14 vendorSha256 = "sha256-IJjJ4X3mv2PUmwzt5/hgv1N6R0w+EXGSrCS4q+INJrA="; 15 16 doCheck = false; 17 18 subPackages = [ "." ]; 19 20 meta = with lib; { 21 description = "Enrich `go test` outputs with text decorations"; 22 homepage = "https://github.com/kyoh86/richgo"; 23 license = licenses.mit; 24 maintainers = with maintainers; [ rvolosatovs ]; 25 }; 26}