about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/tools/gotest/default.nix
blob: e618b3e9532d4aef5a4370b738ee1f664d5aa4ad (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{ 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=";

  subPackages = [ "." ];

  meta = with lib; {
    description = "go test with colors";
    homepage = "https://github.com/rakyll/gotest";
    license = licenses.bsd3;
    maintainers = with maintainers; [ ];
  };
}