osv-scanner 1.3.2 -> 1.3.3 https://github.com/google/osv-scanner/releases attrpath: osv-scanner Checking auto update branch... No auto update branch exists Old version 1.3.2" not present in master derivation file with contents: { lib , buildGoModule , fetchFromGitHub , testers , osv-scanner }: buildGoModule rec { pname = "osv-scanner"; version = "1.3.3"; src = fetchFromGitHub { owner = "google"; repo = pname; rev = "v${version}"; hash = "sha256-J1oOkHh1xHwY8CUq5X+bAfhIbE3/fss5tiZA5/90nhw="; }; vendorHash = "sha256-xarDkQNYa/xl8f0MRdsb+/29B8bY5Ts+MbYHGb5yP10="; subPackages = [ "cmd/osv-scanner" ]; 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 ]; }; }