nixpkgs/pkgs/development/tools/richgo/default.nix

27 lines
619 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";
2021-08-17 20:45:26 +01:00
version = "0.3.9";
2018-08-09 21:04:08 +01:00
src = fetchFromGitHub {
owner = "kyoh86";
repo = "richgo";
rev = "v${version}";
2021-08-17 20:45:26 +01:00
sha256 = "sha256-yVt0iFH9tYCeIWJC16ve988xBXgt96357YiHfsxai7g=";
2018-08-09 21:04:08 +01:00
};
2021-08-17 20:45:26 +01:00
vendorSha256 = "sha256-IJjJ4X3mv2PUmwzt5/hgv1N6R0w+EXGSrCS4q+INJrA=";
2019-11-14 23:44:53 +00:00
doCheck = false;
2019-11-14 23:44:53 +00:00
subPackages = [ "." ];
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 ];
};
}