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-02-03 22:27:07 +00:00
version = "0.3.6";
2018-08-09 21:04:08 +01:00
src = fetchFromGitHub {
owner = "kyoh86";
repo = "richgo";
rev = "v${version}";
2021-02-03 22:27:07 +00:00
sha256 = "sha256-ehhrJlB0XzLHkspvP6vL8MtrjE12baBFkbqWMD41/Sg=";
2018-08-09 21:04:08 +01:00
};
2021-02-03 22:27:07 +00:00
vendorSha256 = "sha256-986Abeeb1MHB/0yN1oud6t8wHD5B5MisRHKZcwOq4tU=";
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 ];
};
}