nixpkgs/pkgs/tools/security/osv-scanner/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

47 lines
1.1 KiB
Nix
Raw Normal View History

2022-12-18 15:54:13 +00:00
{ lib
, buildGoModule
, fetchFromGitHub
, testers
, osv-scanner
}:
buildGoModule rec {
pname = "osv-scanner";
2023-08-03 01:36:34 +00:00
version = "1.3.6";
2022-12-18 15:54:13 +00:00
src = fetchFromGitHub {
owner = "google";
repo = pname;
rev = "v${version}";
2023-08-03 01:36:34 +00:00
hash = "sha256-mvR4LqUPtmLBH9RSfVge4anwun1wHJMCuGyHGQvA56s=";
2022-12-18 15:54:13 +00:00
};
2023-08-03 01:36:34 +00:00
vendorHash = "sha256-oxAvpiNrdst7Y8EbSTrTEebX6+G/8K5UFwdKG+wiDQE=";
subPackages = [
"cmd/osv-scanner"
];
2022-12-18 15:54:13 +00:00
ldflags = [
"-s"
"-w"
"-X main.version=${version}"
"-X main.commit=n/a"
"-X main.date=1970-01-01T00:00:00Z"
];
# Tests require network connectivity to query https://api.osv.dev.
doCheck = false;
passthru.tests.version = testers.testVersion {
package = osv-scanner;
};
meta = with lib; {
description = "Vulnerability scanner written in Go which uses the data provided by https://osv.dev";
homepage = "https://github.com/google/osv-scanner";
changelog = "https://github.com/google/osv-scanner/releases/tag/v${version}";
license = licenses.asl20;
maintainers = with maintainers; [ stehessel urandom ];
};
}