nixpkgs/pkgs/development/tools/gokart/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

29 lines
661 B
Nix
Raw Normal View History

2021-09-03 16:21:38 +00:00
{ lib
, buildGoModule
, fetchFromGitHub
}:
buildGoModule rec {
pname = "gokart";
2022-09-23 15:34:53 +00:00
version = "0.5.1";
2021-09-03 16:21:38 +00:00
src = fetchFromGitHub {
owner = "praetorian-inc";
repo = pname;
rev = "v${version}";
2022-09-23 15:34:53 +00:00
sha256 = "sha256-G1IjlJ/rmviFWy6RFfLtP+bhfYcDuB97leimU39YCoQ=";
2021-09-03 16:21:38 +00:00
};
vendorHash = "sha256-lgKYVgJlmUJ/msdIqG7EKAZuISie1lG7+VeCF/rcSlE=";
2021-09-03 16:21:38 +00:00
# Would need files to scan which are not shipped by the project
doCheck = false;
meta = with lib; {
description = "Static analysis tool for securing Go code";
homepage = "https://github.com/praetorian-inc/gokart";
license = licenses.asl20;
maintainers = with maintainers; [ fab ];
};
}