nats-server: add nixosTests.nats as passthru test

This commit is contained in:
Robert Scott 2022-02-10 01:05:07 +00:00
parent 270c351bdf
commit 810c57990e

View file

@ -1,4 +1,4 @@
{ lib, buildGoModule, fetchFromGitHub }:
{ lib, buildGoModule, fetchFromGitHub, nixosTests }:
buildGoModule rec {
pname = "nats-server";
@ -15,6 +15,8 @@ buildGoModule rec {
doCheck = false;
passthru.tests.nats = nixosTests.nats;
meta = with lib; {
description = "High-Performance server for NATS";
license = licenses.asl20;