mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
richgo: 0.2.8 -> 0.3.3
This commit is contained in:
parent
cd07c6dc87
commit
6acbcff898
1 changed files with 9 additions and 6 deletions
|
@ -1,21 +1,24 @@
|
|||
{ stdenv, buildGoPackage, fetchFromGitHub }:
|
||||
{ stdenv, buildGoModule, fetchFromGitHub }:
|
||||
|
||||
buildGoPackage rec {
|
||||
buildGoModule rec {
|
||||
pname = "richgo";
|
||||
version = "0.2.8";
|
||||
goPackagePath = "github.com/kyoh86/richgo";
|
||||
version = "0.3.3";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "kyoh86";
|
||||
repo = "richgo";
|
||||
rev = "v${version}";
|
||||
sha256 = "0kbwl3a2gima23zmahk0jxp7wga91bs927a1rp5xl889ikng1n4j";
|
||||
sha256 = "07ipa54c4mzm6yizgvkm6x5yim1xgv3f0xdxg35qziacdfcwd6m4";
|
||||
};
|
||||
|
||||
modSha256 = "12wbjfqy6qnapm3f2pz1ci1gvc0y8kzr8c99kihyh1jv9r3zy1wz";
|
||||
|
||||
subPackages = [ "." ];
|
||||
|
||||
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
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ rvolosatovs ];
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue