mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-17 17:44:44 +00:00
Merge pull request #178153 from fabaff/osv-detector
osv-detector: init at 0.6.0
This commit is contained in:
commit
5e1f618f8f
40
pkgs/tools/security/osv-detector/default.nix
Normal file
40
pkgs/tools/security/osv-detector/default.nix
Normal file
@ -0,0 +1,40 @@
|
||||
{ lib
|
||||
, buildGoModule
|
||||
, fetchFromGitHub
|
||||
, osv-detector
|
||||
, testers
|
||||
}:
|
||||
|
||||
buildGoModule rec {
|
||||
pname = "osv-detector";
|
||||
version = "0.6.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "G-Rath";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
hash = "sha256-Y/9q4ZJ4vxDitqrM4hGe49iqLYk4ebhTs4jrD7P8fdw=";
|
||||
};
|
||||
|
||||
vendorSha256 = "sha256-KAxpDQIRrLZIOvfW8wf0CV4Fj6l3W6nNZNCH3ZE6yJc=";
|
||||
|
||||
ldflags = [
|
||||
"-w"
|
||||
"-s"
|
||||
"-X main.version=${version}"
|
||||
];
|
||||
|
||||
passthru.tests.version = testers.testVersion {
|
||||
package = osv-detector;
|
||||
command = "osv-detector -version";
|
||||
version = "osv-detector ${version} (unknown, commit none)";
|
||||
};
|
||||
|
||||
meta = with lib; {
|
||||
description = "Auditing tool for detecting vulnerabilities";
|
||||
homepage = "https://github.com/G-Rath/osv-detector";
|
||||
changelog = "https://github.com/G-Rath/osv-detector/releases/tag/v${version}";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ fab ];
|
||||
};
|
||||
}
|
@ -4155,6 +4155,8 @@ with pkgs;
|
||||
|
||||
ossutil = callPackage ../tools/admin/ossutil {};
|
||||
|
||||
osv-detector = callPackage ../tools/security/osv-detector {};
|
||||
|
||||
pastel = callPackage ../applications/misc/pastel {
|
||||
inherit (darwin.apple_sdk.frameworks) Security;
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user