Merge pull request #299282 from r-ryantm/auto-update/snyk

snyk: 1.1284.0 -> 1.1286.0
This commit is contained in:
Fabian Affolter 2024-03-28 08:53:58 +01:00 committed by GitHub
commit 95d5f0bb42
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 15 additions and 7 deletions

View File

@ -1,20 +1,27 @@
{ buildNpmPackage, fetchFromGitHub, lib, stdenv, testers, snyk }:
{ lib
, buildNpmPackage
, fetchFromGitHub
, stdenv
, testers
, snyk
}:
buildNpmPackage rec {
pname = "snyk";
version = "1.1284.0";
version = "1.1286.0";
src = fetchFromGitHub {
owner = "snyk";
repo = "cli";
rev = "v${version}";
hash = "sha256-CM9172gSeWf+12e6tsro6O1NtiZqUAT0EsA6LAhZ+8s=";
rev = "refs/tags/v${version}";
hash = "sha256-tckifLV+HC7NqTeBtZI+VjZveeVbRS5+63vL8k8qE4s=";
};
npmDepsHash = "sha256-aode80HyGSyZoEiCdsnEPrVo8KSqTW0GxxsGdRyNdiQ=";
npmDepsHash = "sha256-deBtINc+P0NnCIb0jI0Mvn2zbWS6qLqCXL6nKSFGqOI=";
postPatch = ''
substituteInPlace package.json --replace '"version": "1.0.0-monorepo"' '"version": "${version}"'
substituteInPlace package.json \
--replace-fail '"version": "1.0.0-monorepo"' '"version": "${version}"'
'';
env.NIX_CFLAGS_COMPILE =
@ -29,9 +36,10 @@ buildNpmPackage rec {
meta = with lib; {
description = "Scans and monitors projects for security vulnerabilities";
mainProgram = "snyk";
homepage = "https://snyk.io";
changelog = "https://github.com/snyk/cli/releases/tag/v${version}";
license = licenses.asl20;
maintainers = with maintainers; [ ];
mainProgram = "snyk";
};
}