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

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

32 lines
716 B
Nix
Raw Normal View History

2022-12-10 20:39:03 +03:00
{ lib
, buildGoModule
, fetchFromGitHub
, nixosTests
}:
2018-08-19 21:12:51 +03:00
buildGoModule rec {
2022-06-09 17:56:47 +03:00
pname = "nats-server";
2023-06-18 09:13:36 +03:00
version = "2.9.18";
2018-08-19 21:12:51 +03:00
src = fetchFromGitHub {
2022-06-09 17:56:47 +03:00
owner = "nats-io";
repo = pname;
rev = "v${version}";
2023-06-18 09:13:36 +03:00
hash = "sha256-Eda6i4kJbvX1Wzkwd9YSd3fes3kdkekKKhIt7xH8Yi8=";
2018-08-19 21:12:51 +03:00
};
2023-06-18 09:13:36 +03:00
vendorHash = "sha256-m/15F0BHCAEcNlRf71jJP5bjrrqRgX/CQm8SddpTkYw=";
doCheck = false;
passthru.tests.nats = nixosTests.nats;
meta = with lib; {
2018-08-19 21:12:51 +03:00
description = "High-Performance server for NATS";
2022-06-09 17:56:47 +03:00
homepage = "https://nats.io/";
2022-12-10 20:39:03 +03:00
changelog = "https://github.com/nats-io/nats-server/releases/tag/v${version}";
2018-08-19 21:12:51 +03:00
license = licenses.asl20;
2022-01-15 10:58:53 +03:00
maintainers = with maintainers; [ swdunlop derekcollison ];
2018-08-19 21:12:51 +03:00
};
}