2021-12-01 11:47:25 +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";
|
2022-03-22 06:55:59 +00:00
|
|
|
version = "2.11.0";
|
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}";
|
2022-03-22 06:55:59 +00:00
|
|
|
sha256 = "sha256-AYD45L1FFT/S1toLK489C2TTasTHVXIs4Tf7TLOaye0=";
|
2018-11-03 04:38:41 +00:00
|
|
|
};
|
|
|
|
|
2022-03-22 06:55:59 +00:00
|
|
|
vendorSha256 = "sha256-zzbINVp8EA5aIvwUiFlQRtD6YL0iytbgVzCHbo+clYI=";
|
2021-12-01 11:47:25 +00:00
|
|
|
|
|
|
|
subPackages = [
|
|
|
|
"cmd/gosec"
|
|
|
|
];
|
2018-11-03 04:38:41 +00:00
|
|
|
|
2020-08-04 01:26:27 +01:00
|
|
|
doCheck = false;
|
|
|
|
|
2021-12-01 11:47:25 +00:00
|
|
|
ldflags = [
|
|
|
|
"-s"
|
|
|
|
"-w"
|
|
|
|
"-X main.Version=${version}"
|
|
|
|
"-X main.GitTag=${src.rev}"
|
|
|
|
"-X main.BuildDate=unknown"
|
|
|
|
];
|
2020-08-02 10:20:00 +01:00
|
|
|
|
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;
|
|
|
|
};
|
|
|
|
}
|