mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-26 08:53:21 +00:00
cvemap: init at 0.0.6
Tool to work with CVEs https://github.com/projectdiscovery/cvemap
This commit is contained in:
parent
d3f8923899
commit
77ed57b3ed
36
pkgs/by-name/cv/cvemap/package.nix
Normal file
36
pkgs/by-name/cv/cvemap/package.nix
Normal file
@ -0,0 +1,36 @@
|
|||||||
|
{ lib
|
||||||
|
, buildGoModule
|
||||||
|
, fetchFromGitHub
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildGoModule rec {
|
||||||
|
pname = "cvemap";
|
||||||
|
version = "0.0.6";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "projectdiscovery";
|
||||||
|
repo = "cvemap";
|
||||||
|
rev = "refs/tags/v${version}";
|
||||||
|
hash = "sha256-aeUYcgBTHWWLTuAXnnc73yXaC3yLZzruqvedUYCnht4=";
|
||||||
|
};
|
||||||
|
|
||||||
|
vendorHash = "sha256-VQGWi01mOP2N4oYsaDK7wn/+hSFEDHhSma9DOZ06Z3k=";
|
||||||
|
|
||||||
|
subPackages = [
|
||||||
|
"cmd/cvemap/"
|
||||||
|
];
|
||||||
|
|
||||||
|
ldflags = [
|
||||||
|
"-s"
|
||||||
|
"-w"
|
||||||
|
];
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "Tool to work with CVEs";
|
||||||
|
homepage = "https://github.com/projectdiscovery/cvemap";
|
||||||
|
changelog = "https://github.com/projectdiscovery/cvemap/releases/tag/v${version}";
|
||||||
|
license = licenses.mit;
|
||||||
|
maintainers = with maintainers; [ fab ];
|
||||||
|
mainProgram = "cvemap";
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user