gnatsd: init at 1.2.0

This commit is contained in:
Scott W. Dunlop 2018-08-19 11:12:51 -07:00
parent c8e9df9669
commit 61cf6545f7
2 changed files with 28 additions and 0 deletions

View file

@ -0,0 +1,26 @@
{ buildGoPackage, fetchFromGitHub, lib }:
with lib;
buildGoPackage rec {
name = "gnatsd-${version}";
version = "1.2.0";
rev = "v${version}";
goPackagePath = "github.com/nats-io/gnatsd";
src = fetchFromGitHub {
inherit rev;
owner = "nats-io";
repo = "gnatsd";
sha256 = "186xywzdrmvlhlh9wgjs71rqvgab8vinlr3gkzkknny82nv7hcjw";
};
meta = {
description = "High-Performance server for NATS";
license = licenses.asl20;
maintainers = [ maintainers.swdunlop ];
homepage = https://nats.io/;
platforms = platforms.all;
};
}

View file

@ -12901,6 +12901,8 @@ with pkgs;
glabels = callPackage ../applications/graphics/glabels { };
gnatsd = callPackage ../servers/gnatsd { };
gofish = callPackage ../servers/gopher/gofish { };
grafana = callPackage ../servers/monitoring/grafana { };