ripasso-cursive: cosmetic changes (#361736)
[NixPkgs.git] / pkgs / by-name / go / gotestfmt / package.nix
blob0bd71fd5ea5885147d8df1a5f0f3efdf32653ddc
1 { buildGoModule, fetchFromGitHub, lib }:
3 buildGoModule rec {
4   pname = "gotestfmt";
5   version = "2.5.0";
7   src = fetchFromGitHub {
8     owner = "gotesttools";
9     repo = pname;
10     rev = "v${version}";
11     hash = "sha256-7mLn2axlHoXau9JtLhk1zwzhxkFGHgYPo7igI+IAsP4=";
12   };
14   vendorHash = null;
16   meta = with lib; {
17     description = "Go test output for humans";
18     homepage = "https://github.com/gotesttools/gotestfmt";
19     changelog = "https://github.com/GoTestTools/gotestfmt/releases/tag/v${version}";
20     license = licenses.unlicense;
21     maintainers = with maintainers; [ urandom ];
22   };