2021-12-01 12:47:25 +01:00
|
|
|
{ lib
|
|
|
|
, buildGoModule
|
|
|
|
, fetchFromGitHub
|
|
|
|
}:
|
2018-11-03 05:38:41 +01:00
|
|
|
|
2020-06-14 13:13:55 +02:00
|
|
|
buildGoModule rec {
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "gosec";
|
2022-03-22 07:55:59 +01:00
|
|
|
version = "2.11.0";
|
2018-11-03 05:38:41 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "securego";
|
2020-06-14 13:13:55 +02:00
|
|
|
repo = pname;
|
|
|
|
rev = "v${version}";
|
2022-03-22 07:55:59 +01:00
|
|
|
sha256 = "sha256-AYD45L1FFT/S1toLK489C2TTasTHVXIs4Tf7TLOaye0=";
|
2018-11-03 05:38:41 +01:00
|
|
|
};
|
|
|
|
|
2022-03-22 07:55:59 +01:00
|
|
|
vendorSha256 = "sha256-zzbINVp8EA5aIvwUiFlQRtD6YL0iytbgVzCHbo+clYI=";
|
2021-12-01 12:47:25 +01:00
|
|
|
|
|
|
|
subPackages = [
|
|
|
|
"cmd/gosec"
|
|
|
|
];
|
2018-11-03 05:38:41 +01:00
|
|
|
|
2020-08-04 02:26:27 +02:00
|
|
|
doCheck = false;
|
|
|
|
|
2021-12-01 12:47:25 +01:00
|
|
|
ldflags = [
|
|
|
|
"-s"
|
|
|
|
"-w"
|
|
|
|
"-X main.Version=${version}"
|
|
|
|
"-X main.GitTag=${src.rev}"
|
|
|
|
"-X main.BuildDate=unknown"
|
|
|
|
];
|
2020-08-02 11:20:00 +02:00
|
|
|
|
2021-01-23 13:26:19 +01:00
|
|
|
meta = with lib; {
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "https://github.com/securego/gosec";
|
2020-06-14 13:13:55 +02:00
|
|
|
description = "Golang security checker";
|
|
|
|
license = licenses.asl20;
|
|
|
|
maintainers = with maintainers; [ kalbasit nilp0inter ];
|
2018-11-03 05:38:41 +01:00
|
|
|
platforms = platforms.linux ++ platforms.darwin;
|
|
|
|
};
|
|
|
|
}
|