fluffychat: 1.22.1 -> 1.23.0 (#364091)
[NixPkgs.git] / pkgs / by-name / go / gotests / package.nix
blobd0ad80fbb9daa8b3e0e3339aff4d5693fe27cc17
2   lib,
3   buildGoModule,
4   fetchFromGitHub,
5 }:
7 buildGoModule rec {
8   pname = "gotests";
9   version = "1.6.0";
11   src = fetchFromGitHub {
12     owner = "cweill";
13     repo = "gotests";
14     rev = "v${version}";
15     sha256 = "sha256-6IzUpAsFUgF2FwiC17OfDn1M+8WYFQPpRyXbkpHIztw=";
16   };
18   vendorHash = "sha256-WMeHZN3s+8pIYEVaSLjI3Bz+rPTWHr1AkZ8lydjBwCw=";
20   # tests are broken in nix environment
21   doCheck = false;
23   meta = with lib; {
24     description = "Generate Go tests from your source code";
25     mainProgram = "gotests";
26     homepage = "https://github.com/cweill/gotests";
27     maintainers = with maintainers; [ vdemeester ];
28     license = licenses.asl20;
29   };