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

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

29 lines
656 B
Nix
Raw Normal View History

{ buildGoModule, fetchFromGitHub, lib }:
2018-09-08 23:09:06 +00:00
with lib;
buildGoModule rec {
pname = "nats-streaming-server";
version = "0.25.6";
2018-09-08 23:09:06 +00:00
src = fetchFromGitHub {
rev = "v${version}";
owner = "nats-io";
repo = pname;
sha256 = "sha256-i5fNxeJQXiyy+9NOGT1X68u9Pztxvnnba64rxIgjbZc=";
2018-09-08 23:09:06 +00:00
};
vendorHash = "sha256-r6RDHGAt83sKyMHvG3927rZroWdnTQFb8zTrmlc0W5U=";
# tests fail and ask to `go install`
doCheck = false;
2018-09-08 23:09:06 +00:00
meta = {
description = "NATS Streaming System Server";
license = licenses.asl20;
maintainers = [ maintainers.swdunlop ];
homepage = "https://nats.io/";
2023-11-23 21:09:35 +00:00
mainProgram = "nats-streaming-server";
2018-09-08 23:09:06 +00:00
};
}