depot/third_party/nixpkgs/pkgs/by-name/nv/nvdtools/package.nix
Default email 23b612e36f Project import generated by Copybara.
GitOrigin-RevId: ae5c332cbb5827f6b1f02572496b141021de335f
2024-01-25 23:12:00 +09:00

31 lines
799 B
Nix

{ lib
, buildGoModule
, fetchFromGitHub
}:
buildGoModule rec {
pname = "nvdtools";
version = "0.1.5";
src = fetchFromGitHub {
owner = "facebookincubator";
repo = "nvdtools";
rev = "refs/tags/v${version}";
hash = "sha256-uB7dfqGaoP9Xx04BykscIFQ2rckaMaj93gh5mhgMqfw=";
};
vendorHash = "sha256-DzhP42DaddIm+/Z3a83rWX5WY+tM1P+vBNe6B91L7E8=";
ldflags = [
"-s"
"-w"
];
meta = with lib; {
description = "Tools to work with the feeds (vulnerabilities, CPE dictionary etc.) distributed by National Vulnerability Database";
homepage = "https://github.com/facebookincubator/nvdtools";
changelog = "https://github.com/facebookincubator/nvdtools/releases/tag/v${version}";
license = licenses.asl20;
maintainers = with maintainers; [ fab ];
};
}