Merge pull request #46691 from rvolosatovs/pkgs/richgo

richgo: init at 0.2.8
This commit is contained in:
Sarah Brofeldt 2018-09-16 15:02:28 +02:00 committed by GitHub
commit d499b7d821
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 23 additions and 0 deletions

View file

@ -0,0 +1,21 @@
{ stdenv, buildGoPackage, fetchFromGitHub }:
buildGoPackage rec {
name = "richgo-${version}";
version = "0.2.8";
goPackagePath = "github.com/kyoh86/richgo";
src = fetchFromGitHub {
owner = "kyoh86";
repo = "richgo";
rev = "v${version}";
sha256 = "0kbwl3a2gima23zmahk0jxp7wga91bs927a1rp5xl889ikng1n4j";
};
meta = with stdenv.lib; {
description = "Enrich `go test` outputs with text decorations.";
homepage = https://github.com/kyoh86/richgo;
license = licenses.unlicense; # NOTE: The project switched to MIT in https://git.io/fA1ik
maintainers = with maintainers; [ rvolosatovs ];
};
}

View file

@ -4917,6 +4917,8 @@ with pkgs;
redsocks = callPackage ../tools/networking/redsocks { };
richgo = callPackage ../development/tools/richgo { };
rst2html5 = callPackage ../tools/text/rst2html5 { };
rt = callPackage ../servers/rt { };