3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/tools/richgo/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

23 lines
574 B
Nix
Raw Normal View History

{ lib, buildGoModule, fetchFromGitHub }:
2018-08-09 21:04:08 +01:00
2019-11-14 23:44:53 +00:00
buildGoModule rec {
pname = "richgo";
2022-11-17 01:17:10 +00:00
version = "0.3.11";
2018-08-09 21:04:08 +01:00
src = fetchFromGitHub {
owner = "kyoh86";
repo = "richgo";
rev = "v${version}";
2022-11-17 01:17:10 +00:00
sha256 = "sha256-a8CxJKk9fKGYTDtY/mU/3gcdIeejg20sL8Tm4ozgDl4=";
2018-08-09 21:04:08 +01:00
};
2022-11-17 01:17:10 +00:00
vendorSha256 = "sha256-j2RZOt5IRb2oEQ6sFu+nXpVkDsnppA6h9YT4F7AiCoY=";
2019-11-14 23:44:53 +00:00
meta = with lib; {
description = "Enrich `go test` outputs with text decorations";
homepage = "https://github.com/kyoh86/richgo";
2019-11-14 23:44:53 +00:00
license = licenses.mit;
2018-08-09 21:04:08 +01:00
maintainers = with maintainers; [ rvolosatovs ];
};
}