mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 15:11:25 +00:00
richgo: init at 0.2.8
This commit is contained in:
parent
0e33c56662
commit
18e1eee667
21
pkgs/development/tools/richgo/default.nix
Normal file
21
pkgs/development/tools/richgo/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user