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

Merge pull request #219264 from fabaff/openrisk

openrisk: init at 0.0.1
parents e1d3fc60 7ef98532
Loading
Loading
Loading
Loading
+26 −0
Original line number Diff line number Diff line
{ lib
, buildGoModule
, fetchFromGitHub
}:

buildGoModule rec {
  pname = "openrisk";
  version = "0.0.1";

  src = fetchFromGitHub {
    owner = "projectdiscovery";
    repo = pname;
    rev = "refs/tags/v${version}";
    hash = "sha256-8DGwNoucLpdazf9r4PZrN4DEOMpTr5U7tal2Rab92pA=";
  };

  vendorHash = "sha256-BLowqqlMLDtsthS4uKeycmtG7vASG25CARGpUcuibcw=";

  meta = with lib; {
    description = "Tool that generates an AI-based risk score";
    homepage = "https://github.com/projectdiscovery/openrisk";
    changelog = "https://github.com/projectdiscovery/openrisk/releases/tag/v${version}";
    license = licenses.mit;
    maintainers = with maintainers; [ fab ];
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -39114,6 +39114,8 @@ with pkgs;
  openring = callPackage ../applications/misc/openring { };
  openrisk = callPackage ../tools/security/openrisk { };
  openvino = callPackage ../development/libraries/openvino {
    python = python3;
  };