nats-server: add changelog to meta

This commit is contained in:
Fabian Affolter 2022-12-10 18:39:03 +01:00 committed by GitHub
parent 464b66a662
commit e27d2edf93
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -1,4 +1,8 @@
{ lib, buildGoModule, fetchFromGitHub, nixosTests }: { lib
, buildGoModule
, fetchFromGitHub
, nixosTests
}:
buildGoModule rec { buildGoModule rec {
pname = "nats-server"; pname = "nats-server";
@ -8,10 +12,10 @@ buildGoModule rec {
owner = "nats-io"; owner = "nats-io";
repo = pname; repo = pname;
rev = "v${version}"; rev = "v${version}";
sha256 = "sha256-GIekoIhXhsWl0od/tkUO8h+9WPICds4iPVARTn4P0tE="; hash = "sha256-GIekoIhXhsWl0od/tkUO8h+9WPICds4iPVARTn4P0tE=";
}; };
vendorSha256 = "sha256-ASLy0rPuCSYGyy5Pw9fj559nxO4vPPagDKAe8wM29lo="; vendorHash = "sha256-ASLy0rPuCSYGyy5Pw9fj559nxO4vPPagDKAe8wM29lo=";
doCheck = false; doCheck = false;
@ -20,6 +24,7 @@ buildGoModule rec {
meta = with lib; { meta = with lib; {
description = "High-Performance server for NATS"; description = "High-Performance server for NATS";
homepage = "https://nats.io/"; homepage = "https://nats.io/";
changelog = "https://github.com/nats-io/nats-server/releases/tag/v${version}";
license = licenses.asl20; license = licenses.asl20;
maintainers = with maintainers; [ swdunlop derekcollison ]; maintainers = with maintainers; [ swdunlop derekcollison ];
}; };