From 6785cd4ae37a783b7d24ab7c8e1e7ac11bc62575 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Mon, 22 Jan 2024 00:01:59 +0100 Subject: [PATCH] nvdtools: init at 0.1.5 Tools to work with the feeds (vulnerabilities, CPE dictionary etc.) distributed by National Vulnerability Databas https://github.com/facebookincubator/nvdtools --- pkgs/by-name/nv/nvdtools/package.nix | 31 ++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 pkgs/by-name/nv/nvdtools/package.nix diff --git a/pkgs/by-name/nv/nvdtools/package.nix b/pkgs/by-name/nv/nvdtools/package.nix new file mode 100644 index 000000000000..b797c50da447 --- /dev/null +++ b/pkgs/by-name/nv/nvdtools/package.nix @@ -0,0 +1,31 @@ +{ 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 ]; + }; +}