depot/third_party/nixpkgs/pkgs/development/tools/gotestfmt/default.nix
Default email 9c6ee729d6 Project import generated by Copybara.
GitOrigin-RevId: 6cee3b5893090b0f5f0a06b4cf42ca4e60e5d222
2023-07-15 19:15:38 +02:00

23 lines
599 B
Nix

{ buildGoModule, fetchFromGitHub, lib }:
buildGoModule rec {
pname = "gotestfmt";
version = "2.5.0";
src = fetchFromGitHub {
owner = "gotesttools";
repo = pname;
rev = "v${version}";
hash = "sha256-7mLn2axlHoXau9JtLhk1zwzhxkFGHgYPo7igI+IAsP4=";
};
vendorHash = null;
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 ];
};
}