evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / by-name / go / gokart / package.nix
blob11e68b9bede1775562817c42abc3807e983345b4
1 { lib
2 , buildGoModule
3 , fetchFromGitHub
4 }:
6 buildGoModule rec {
7   pname = "gokart";
8   version = "0.5.1";
10   src = fetchFromGitHub {
11     owner = "praetorian-inc";
12     repo = pname;
13     rev = "v${version}";
14     sha256 = "sha256-G1IjlJ/rmviFWy6RFfLtP+bhfYcDuB97leimU39YCoQ=";
15   };
17   vendorHash = "sha256-lgKYVgJlmUJ/msdIqG7EKAZuISie1lG7+VeCF/rcSlE=";
19   # Would need files to scan which are not shipped by the project
20   doCheck = false;
22   meta = with lib; {
23     description = "Static analysis tool for securing Go code";
24     mainProgram = "gokart";
25     homepage = "https://github.com/praetorian-inc/gokart";
26     license = licenses.asl20;
27     maintainers = with maintainers; [ fab ];
28   };