Merge pull request #209629 from urandom2/gotestfmt
Fixes https://github.com/NixOS/nixpkgs/issues/209348
This commit is contained in:
commit
b1831a1061
2 changed files with 25 additions and 0 deletions
23
pkgs/development/tools/gotestfmt/default.nix
Normal file
23
pkgs/development/tools/gotestfmt/default.nix
Normal file
|
@ -0,0 +1,23 @@
|
||||||
|
{ buildGoModule, fetchFromGitHub, lib }:
|
||||||
|
|
||||||
|
buildGoModule rec {
|
||||||
|
pname = "gotestfmt";
|
||||||
|
version = "2.4.1";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "gotesttools";
|
||||||
|
repo = pname;
|
||||||
|
rev = "v${version}";
|
||||||
|
hash = "sha256-Rb/nIsHISzvqd+jJU4TNrHbailvgGEq4y0JuM9IdA3w=";
|
||||||
|
};
|
||||||
|
|
||||||
|
vendorHash = "sha256-pQpattmS9VmO3ZIQUFn66az8GSmB4IvYhTTCFn6SUmo=";
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "Go test output for humans";
|
||||||
|
homepage = "https://github.com/gotesttools/gotestfmt";
|
||||||
|
changelog = "https://github.com/GoTestTools/gotestfmt/releases/tag/v${version}";
|
||||||
|
license = licenses.unlicense;
|
||||||
|
maintainers = with maintainers; [ urandom ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -25885,6 +25885,8 @@ with pkgs;
|
||||||
|
|
||||||
gotest = callPackage ../development/tools/gotest { };
|
gotest = callPackage ../development/tools/gotest { };
|
||||||
|
|
||||||
|
gotestfmt = callPackage ../development/tools/gotestfmt { };
|
||||||
|
|
||||||
gotools = callPackage ../development/tools/gotools { };
|
gotools = callPackage ../development/tools/gotools { };
|
||||||
|
|
||||||
gotop = callPackage ../tools/system/gotop {
|
gotop = callPackage ../tools/system/gotop {
|
||||||
|
|
Loading…
Reference in a new issue