Merge pull request #178144 from fabaff/gosca

gosca: init at 0.4.2
This commit is contained in:
Fabian Affolter 2022-06-20 21:35:22 +02:00 committed by GitHub
commit c11fab4b4b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 36 additions and 0 deletions

View file

@ -0,0 +1,34 @@
{ lib
, buildGoModule
, fetchFromGitHub
, gosca
, testers
}:
buildGoModule rec {
pname = "gosca";
version = "0.4.2";
src = fetchFromGitHub {
owner = "TARI0510";
repo = pname;
rev = "v${version}";
hash = "sha256-mjQSYkcLl9X3IPv0liX26hvystsQOSVXvovKp4VekAY=";
};
vendorSha256 = "sha256-0EqMW4aNYPZEuk+mxmLTuenGdam56YneEad8lodVeBo=";
passthru.tests.version = testers.testVersion {
package = gosca;
command = "gosca -v";
version = "GoSCA_v${version}";
};
meta = with lib; {
description = "Golang dependence security checker";
homepage = "https://github.com/TARI0510/gosca";
changelog = "https://github.com/TARI0510/gosca/releases/tag/v${version}";
license = licenses.mit;
maintainers = with maintainers; [ fab ];
};
}

View file

@ -2487,6 +2487,8 @@ with pkgs;
gopass-summon-provider = callPackage ../tools/security/gopass/summon.nix { };
gosca = callPackage ../development/tools/gosca { };
gosh = callPackage ../tools/security/gosh { };
gospider = callPackage ../tools/security/gospider { };