Merge pull request #109951 from fabaff/go-cve-search

go-cve-search: init at 0.1.3
This commit is contained in:
Sandro 2021-01-28 18:29:26 +01:00 committed by GitHub
commit 7e7a117304
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 34 additions and 0 deletions

View File

@ -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 ];
};
}

View File

@ -1150,6 +1150,8 @@ in
go-check = callPackage ../development/tools/check { };
go-cve-search = callPackage ../tools/security/go-cve-search { };
chkcrontab = callPackage ../tools/admin/chkcrontab { };
claws = callPackage ../tools/misc/claws { };