go-exploitdb: 0.6.3 -> 0.7.0 (#486792)

This commit is contained in:
Nick Cao
2026-02-04 21:05:31 +00:00
committed by GitHub
+8 -8
View File
@@ -4,31 +4,31 @@
fetchFromGitHub,
}:
buildGoModule rec {
buildGoModule (finalAttrs: {
pname = "go-exploitdb";
version = "0.6.3";
version = "0.7.0";
src = fetchFromGitHub {
owner = "vulsio";
repo = "go-exploitdb";
tag = "v${version}";
hash = "sha256-GT5kEEYdjyHQTF0m9pMX+uxH++BuA8ORIL7loc5hSfI=";
tag = "v${finalAttrs.version}";
hash = "sha256-sPBFFhQ9z5ecJMnys9U7QDaBVSEKm9V8jka19d1Eafg=";
};
vendorHash = "sha256-8xUoCamF2VV+D04XBwc3OtQTI2/j6uMbhmDXpHQZxXI=";
vendorHash = "sha256-qWo2PfrvO/eWIf7DjTmbi0qETOg/6jrHZ3BdfugLyGc=";
ldflags = [
"-s"
"-w"
"-X=github.com/vulsio/go-exploitdb/config.Version=${version}"
"-X=github.com/vulsio/go-exploitdb/config.Version=${finalAttrs.version}"
];
meta = {
description = "Tool for searching Exploits from Exploit Databases, etc";
mainProgram = "go-exploitdb";
homepage = "https://github.com/vulsio/go-exploitdb";
changelog = "https://github.com/vulsio/go-exploitdb/releases/tag/v${version}";
changelog = "https://github.com/vulsio/go-exploitdb/releases/tag/${finalAttrs.src.tag}";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ fab ];
};
}
})