2021-01-25 08:26:54 +00:00
|
|
|
{ lib, buildGoModule, fetchFromGitHub }:
|
2018-11-03 04:38:41 +00:00
|
|
|
|
2020-06-14 12:13:55 +01:00
|
|
|
buildGoModule rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "gosec";
|
2021-03-04 16:33:50 +00:00
|
|
|
version = "2.7.0";
|
2018-11-03 04:38:41 +00:00
|
|
|
|
2020-06-14 12:13:55 +01:00
|
|
|
subPackages = [ "cmd/gosec" ];
|
2018-11-03 04:38:41 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "securego";
|
2020-06-14 12:13:55 +01:00
|
|
|
repo = pname;
|
|
|
|
rev = "v${version}";
|
2021-03-04 16:33:50 +00:00
|
|
|
sha256 = "sha256-U7+0wXnuIDlATpVRVknwaPxib36+iYvvYUVM6d7Xf6I=";
|
2018-11-03 04:38:41 +00:00
|
|
|
};
|
|
|
|
|
2021-03-04 16:33:50 +00:00
|
|
|
vendorSha256 = "sha256-nr1rx6GM+ETcfLreYT081xNzUz2exloogJ+gcwF2u2o=";
|
2018-11-03 04:38:41 +00:00
|
|
|
|
2020-08-04 01:26:27 +01:00
|
|
|
doCheck = false;
|
|
|
|
|
2020-08-02 10:20:00 +01:00
|
|
|
buildFlagsArray = [ "-ldflags=-s -w -X main.Version=${version} -X main.GitTag=${src.rev} -X main.BuildDate=unknown" ];
|
|
|
|
|
2021-01-23 12:26:19 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/securego/gosec";
|
2020-06-14 12:13:55 +01:00
|
|
|
description = "Golang security checker";
|
|
|
|
license = licenses.asl20;
|
|
|
|
maintainers = with maintainers; [ kalbasit nilp0inter ];
|
2018-11-03 04:38:41 +00:00
|
|
|
platforms = platforms.linux ++ platforms.darwin;
|
|
|
|
};
|
|
|
|
}
|
2020-06-14 12:13:55 +01:00
|
|
|
|