nixpkgs/pkgs/development/tools/gotestsum/default.nix

30 lines
755 B
Nix
Raw Normal View History

{ lib, fetchFromGitHub, buildGoModule }:
2019-08-31 08:09:32 +00:00
buildGoModule rec {
pname = "gotestsum";
2021-04-22 10:35:57 +00:00
version = "1.6.4";
2019-08-31 08:09:32 +00:00
src = fetchFromGitHub {
owner = "gotestyourself";
repo = "gotestsum";
rev = "v${version}";
2021-04-22 10:35:57 +00:00
sha256 = "sha256-5iSUk/J73enbc/N3bn7M4oj2A0yoF1jTWpnXD380hFI=";
2019-08-31 08:09:32 +00:00
};
2021-03-30 12:34:05 +00:00
vendorSha256 = "sha256-sHi8iW+ZV/coeAwDUYnSH039UNtUO9HK0Bhz9Gmtv8k=";
2020-03-18 06:42:23 +00:00
doCheck = false;
2020-03-18 06:42:23 +00:00
buildFlagsArray = [ "-ldflags=-s -w -X main.version=${version}" ];
2019-08-31 08:09:32 +00:00
2020-09-05 04:20:00 +00:00
subPackages = [ "." ];
meta = with lib; {
2019-08-31 08:09:32 +00:00
homepage = "https://github.com/gotestyourself/gotestsum";
description = "A human friendly `go test` runner";
platforms = platforms.linux ++ platforms.darwin;
license = licenses.asl20;
maintainers = with maintainers; [ endocrimes ];
};
}