biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / development / tools / gotests / default.nix
blob2086df1051bae2447e847337980b6ad6cfdbaa2d
1 { lib, buildGoModule, fetchFromGitHub }:
3 buildGoModule rec {
4   pname = "gotests";
5   version = "1.6.0";
7   src = fetchFromGitHub {
8     owner = "cweill";
9     repo = "gotests";
10     rev = "v${version}";
11     sha256 = "sha256-6IzUpAsFUgF2FwiC17OfDn1M+8WYFQPpRyXbkpHIztw=";
12   };
14   vendorHash = "sha256-WMeHZN3s+8pIYEVaSLjI3Bz+rPTWHr1AkZ8lydjBwCw=";
16   # tests are broken in nix environment
17   doCheck = false;
19   meta = with lib; {
20     description = "Generate Go tests from your source code";
21     mainProgram = "gotests";
22     homepage = "https://github.com/cweill/gotests";
23     maintainers = with maintainers; [ vdemeester ];
24     license = licenses.asl20;
25   };