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-06-18 06:21:50 +00:00
version = "2.8.1";
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-06-18 06:21:50 +00:00
sha256 = "sha256-AlADSEekcUH/pCGggKlkBDiIYMe1zsoe9hh6fVUwQVA=";
2018-11-03 04:38:41 +00:00
};
2021-06-18 06:21:50 +00:00
vendorSha256 = "sha256-HBwIZfvkL9HSwkD1sZzBM7IJFAjLbCxyc95vqR5TFAg=";
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