Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / tools / gotest / default.nix
blobe618b3e9532d4aef5a4370b738ee1f664d5aa4ad
1 { lib, buildGoModule, fetchFromGitHub }:
3 buildGoModule rec {
4   pname = "gotest";
5   version = "0.0.6";
7   src = fetchFromGitHub {
8     owner = "rakyll";
9     repo = pname;
10     rev = "v${version}";
11     sha256 = "1v11ccrjghq7nsz0f91r17di14yixsw28vs0m3dwzwqkh1a20img";
12   };
14   vendorHash = "sha256-pVq6H1HoKqCMRfJg7FftRf3vh+BWZQe6cQAX+TBzKqw=";
16   subPackages = [ "." ];
18   meta = with lib; {
19     description = "go test with colors";
20     homepage = "https://github.com/rakyll/gotest";
21     license = licenses.bsd3;
22     maintainers = with maintainers; [ ];
23   };