Merge pull request #178144 from fabaff/gosca

gosca: init at 0.4.2
main
Fabian Affolter 2 years ago committed by GitHub
commit c11fab4b4b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 34
      pkgs/development/tools/gosca/default.nix
  2. 2
      pkgs/top-level/all-packages.nix

@ -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 ];
};
}

@ -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 { };

Loading…
Cancel
Save