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

31 lines
789 B
Nix
Raw Normal View History

{ lib, buildGoModule, fetchFromGitHub }:
2018-11-03 04:38:41 +00:00
2020-06-14 11:13:55 +00:00
buildGoModule rec {
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 11:13:55 +00:00
subPackages = [ "cmd/gosec" ];
2018-11-03 04:38:41 +00:00
src = fetchFromGitHub {
owner = "securego";
2020-06-14 11:13:55 +00: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
doCheck = false;
2020-08-02 09:20:00 +00:00
buildFlagsArray = [ "-ldflags=-s -w -X main.Version=${version} -X main.GitTag=${src.rev} -X main.BuildDate=unknown" ];
meta = with lib; {
homepage = "https://github.com/securego/gosec";
2020-06-14 11:13:55 +00: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 11:13:55 +00:00