Unverified Commit c11fab4b authored by Fabian Affolter's avatar Fabian Affolter Committed by GitHub
Browse files

Merge pull request #178144 from fabaff/gosca

gosca: init at 0.4.2
parents 95e7c304 eb49cf16
Loading
Loading
Loading
Loading
+34 −0
Original line number Diff line number Diff line
{ 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 ];
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -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 { };