summaryrefslogtreecommitdiffstats
path: root/pkgs/tools/security/go-cve-search/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/tools/security/go-cve-search/default.nix')
-rw-r--r--pkgs/tools/security/go-cve-search/default.nix32
1 files changed, 32 insertions, 0 deletions
diff --git a/pkgs/tools/security/go-cve-search/default.nix b/pkgs/tools/security/go-cve-search/default.nix
new file mode 100644
index 000000000000..e68970b0b267
--- /dev/null
+++ b/pkgs/tools/security/go-cve-search/default.nix
@@ -0,0 +1,32 @@
+{ buildGoModule
+, fetchFromGitHub
+, lib
+}:
+
+buildGoModule rec {
+ pname = "go-cve-search";
+ version = "0.1.3";
+
+ src = fetchFromGitHub {
+ owner = "s-index";
+ repo = pname;
+ rev = "v${version}";
+ sha256 = "0hbv829daviskwsyp9xjcvl52m22986b2cylf2rldnxw5x8zqdvd";
+ };
+
+ vendorSha256 = "0bhxk39ivbkhwjvq6415lax1pzn208b7px1id0d1nry93bk2zynd";
+
+ # Tests requires network access
+ doCheck = false;
+
+ meta = with lib; {
+ description = "A lightweight CVE search tool";
+ longDescription = ''
+ go-cve-search is a lightweight tool to search CVE (Common Vulnerabilities
+ and Exposures).
+ '';
+ homepage = "https://github.com/s-index/go-cve-search";
+ license = with licenses; [ mit ];
+ maintainers = with maintainers; [ fab ];
+ };
+}