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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

26 lines
585 B
Nix
Raw Normal View History

2021-10-21 11:36:06 +02:00
{ lib, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
pname = "gotest";
version = "0.0.6";
src = fetchFromGitHub {
owner = "rakyll";
repo = pname;
rev = "v${version}";
sha256 = "1v11ccrjghq7nsz0f91r17di14yixsw28vs0m3dwzwqkh1a20img";
};
vendorHash = "sha256-pVq6H1HoKqCMRfJg7FftRf3vh+BWZQe6cQAX+TBzKqw=";
2021-10-21 11:36:06 +02:00
subPackages = [ "." ];
meta = with lib; {
description = "go test with colors";
mainProgram = "gotest";
2021-10-21 11:36:06 +02:00
homepage = "https://github.com/rakyll/gotest";
license = licenses.bsd3;
2023-07-23 19:30:22 +02:00
maintainers = with maintainers; [ ];
2021-10-21 11:36:06 +02:00
};
}