nixpkgs/pkgs/servers/nats-server/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

27 lines
633 B
Nix
Raw Normal View History

{ lib, buildGoModule, fetchFromGitHub, nixosTests }:
2018-08-19 18:12:51 +00:00
buildGoModule rec {
2022-06-09 14:56:47 +00:00
pname = "nats-server";
2022-10-11 04:41:44 +00:00
version = "2.9.3";
2018-08-19 18:12:51 +00:00
src = fetchFromGitHub {
2022-06-09 14:56:47 +00:00
owner = "nats-io";
repo = pname;
rev = "v${version}";
2022-10-11 04:41:44 +00:00
sha256 = "sha256-epu/LV9sXF8P+W8suo9wccZ7zr/O6jK6US6RviEULYQ=";
2018-08-19 18:12:51 +00:00
};
2022-09-30 18:46:12 +00:00
vendorSha256 = "sha256-yVTAgG3j2zrPEFGAcV4LSihws9XUoYrZ81fp/MYv8Eo=";
doCheck = false;
passthru.tests.nats = nixosTests.nats;
meta = with lib; {
2018-08-19 18:12:51 +00:00
description = "High-Performance server for NATS";
2022-06-09 14:56:47 +00:00
homepage = "https://nats.io/";
2018-08-19 18:12:51 +00:00
license = licenses.asl20;
2022-01-15 07:58:53 +00:00
maintainers = with maintainers; [ swdunlop derekcollison ];
2018-08-19 18:12:51 +00:00
};
}