about summary refs log tree commit diff
path: root/nixpkgs/pkgs/servers/nats-streaming-server/default.nix
blob: cc73b2e1f6f2957ee8382f226d8904a76bbdae8f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{  buildGoPackage, fetchFromGitHub, lib  }:

with lib;

buildGoPackage rec {
  name = "nats-streaming-server-${version}";
  version = "0.11.2";
  rev = "v${version}";

  goPackagePath = "github.com/nats-io/nats-streaming-server";

  src = fetchFromGitHub {
    inherit rev;
    owner = "nats-io";
    repo = "nats-streaming-server";
    sha256 = "1jd9c5yw3xxp5hln1g8w48l4cslhxbv0k2af47g6pya09kwknqkq";
  };

  meta = {
    description = "NATS Streaming System Server";
    license = licenses.asl20;
    maintainers = [ maintainers.swdunlop ];
    homepage = https://nats.io/;
    platforms = platforms.all;
  };
}