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
572 B
Nix
Raw Normal View History

{ lib, buildGoModule, fetchFromGitHub }:
2018-08-09 20:04:08 +00:00
2019-11-14 23:44:53 +00:00
buildGoModule rec {
pname = "richgo";
2023-03-05 00:55:14 +00:00
version = "0.3.12";
2018-08-09 20:04:08 +00:00
src = fetchFromGitHub {
owner = "kyoh86";
repo = "richgo";
rev = "v${version}";
2023-03-05 00:55:14 +00:00
sha256 = "sha256-pOB1exuwGwSxStodKhLLwh1xBvLjopUn0k+sEARdA9g=";
2018-08-09 20:04:08 +00:00
};
2023-03-05 00:55:14 +00:00
vendorHash = "sha256-jIzBN5T5+eTFCYOdS5hj3yTGOfU8NTrFmnIu+dDjVeU=";
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 20:04:08 +00:00
maintainers = with maintainers; [ rvolosatovs ];
};
}