nats-streaming-server: 0.23.0 -> 0.24.0
Fixes: CVE-2022-26652
This commit is contained in:
parent
cca8f150df
commit
cb10f1ecd8
1 changed files with 9 additions and 5 deletions
|
@ -1,19 +1,23 @@
|
|||
{ buildGoPackage, fetchFromGitHub, lib }:
|
||||
{ buildGoModule, fetchFromGitHub, lib }:
|
||||
|
||||
with lib;
|
||||
|
||||
buildGoPackage rec {
|
||||
buildGoModule rec {
|
||||
pname = "nats-streaming-server";
|
||||
version = "0.23.0";
|
||||
goPackagePath = "github.com/nats-io/${pname}";
|
||||
version = "0.24.3";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
rev = "v${version}";
|
||||
owner = "nats-io";
|
||||
repo = pname;
|
||||
sha256 = "sha256-Uol1A4+0V4dUQ7Qw0qRUWHzFBugVDYSulDGTJZ4a+ts=";
|
||||
sha256 = "sha256-vpDOiFuxLpqor+9SztdZrJvwC8QGwt5+df4R2OTcxlA=";
|
||||
};
|
||||
|
||||
vendorSha256 = "sha256:1m783cq20xlv5aglf252g5127r5ilfq4fqj00vim38v271511hmy";
|
||||
|
||||
# tests fail and ask to `go install`
|
||||
doCheck = false;
|
||||
|
||||
meta = {
|
||||
description = "NATS Streaming System Server";
|
||||
license = licenses.asl20;
|
||||
|
|
Loading…
Reference in a new issue