pkgs/govulncheck: remove in favor of nixpkgs version

This commit is contained in:
Aaron Bieber 2023-07-10 06:29:38 -06:00
parent de8941bf95
commit b74c7f1b2c
No known key found for this signature in database
2 changed files with 1 additions and 28 deletions

View File

@ -69,6 +69,7 @@ in with lib; {
brave
drawterm
go-font
govulncheck
hpi
pcsctools
promnesia
@ -77,7 +78,6 @@ in with lib; {
vlc
zeal
(callPackage ../pkgs/govulncheck.nix { })
(callPackage ../configs/helix.nix { })
]);

View File

@ -1,27 +0,0 @@
{ lib, buildGoModule, fetchFromGitHub, ... }:
with lib;
buildGoModule rec {
name = "vuln";
version = "0.2.0";
src = fetchFromGitHub {
owner = "golang";
repo = name;
rev = "v${version}";
sha256 = "sha256-0lb1GwOcEpchT3TkdSve335bjYbVsuVzq1SvCDwtX/Q=";
};
vendorSha256 = "sha256-r9XshbgVA5rppJF46SFYPad344ZHMLWTHTnL6vbIFH8=";
#> github.com/tidwall/pretty@v1.2.0: is explicitly required in go.mod, but not marked as explicit in vendor/modules.txt
doCheck = false;
subPackages = [ "cmd/govulncheck" ];
meta = {
description = "tools for the Go vulnerability database";
homepage = "https://github.com/golang/vuln";
license = licenses.isc;
maintainers = with maintainers; [ qbit ];
};
}