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

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

33 lines
750 B
Nix
Raw Normal View History

2022-12-10 17:39:03 +00:00
{ 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";
2024-04-12 01:18:30 +00:00
version = "2.10.14";
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}";
2024-04-12 01:18:30 +00:00
hash = "sha256-+DdhdW8CCMprjR2XcOntkTDh5CHtEFHYFz7Htdptw3s=";
2018-08-19 18:12:51 +00:00
};
2024-04-12 01:18:30 +00:00
vendorHash = "sha256-4kBXVsKf1jD3zvaAy6Rb7zmIK1WPbi31GRvRghdEC/s=";
doCheck = false;
passthru.tests.nats = nixosTests.nats;
meta = with lib; {
2018-08-19 18:12:51 +00:00
description = "High-Performance server for NATS";
mainProgram = "nats-server";
2022-06-09 14:56:47 +00:00
homepage = "https://nats.io/";
2022-12-10 17:39:03 +00:00
changelog = "https://github.com/nats-io/nats-server/releases/tag/v${version}";
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
};
}