Unverified Commit d6d35e42 authored by figsoda's avatar figsoda Committed by GitHub
Browse files

Merge pull request #233082 from fabaff/go-exploitdb

go-exploitdb: init at 0.4.5
parents eddffca1 4a6077e7
Loading
Loading
Loading
Loading
+32 −0
Original line number Diff line number Diff line
{ lib
, buildGoModule
, fetchFromGitHub
}:

buildGoModule rec {
  pname = "go-exploitdb";
  version = "0.4.5";

  src = fetchFromGitHub {
    owner = "vulsio";
    repo = "go-exploitdb";
    rev = "refs/tags/v${version}";
    hash = "sha256-iBOpgeL/cLoQufla0MpQs/0icRWUj1HngnAwOcKLSsQ=";
  };

  vendorHash = "sha256-e+E8qcc5sRlb9clOFUrOzVwJlp3AFnZ6/lNAxaBe+hQ=";

  ldflags = [
    "-s"
    "-w"
    "-X=github.com/vulsio/go-exploitdb/config.Version=${version}"
  ];

  meta = with lib; {
    description = "Tool for searching Exploits from Exploit Databases, etc";
    homepage = "https://github.com/vulsio/go-exploitdb";
    changelog = "https://github.com/vulsio/go-exploitdb/releases/tag/v${version}";
    license = licenses.mit;
    maintainers = with maintainers; [ fab ];
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -35715,6 +35715,8 @@ with pkgs;
    inherit (darwin.apple_sdk.frameworks) IOKit;
  };
  go-exploitdb = callPackage ../tools/security/go-exploitdb { };
  groestlcoin  = libsForQt5.callPackage ../applications/blockchains/groestlcoin {
    boost = boost17x;
    withGui = true;