blob: f8290cf52916785697ef9c5fa224a178404747b1 (
about) (
plain)
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
27
28
29
30
31
32
33
34
|
{
lib,
buildGoModule,
fetchFromGitHub,
}:
buildGoModule rec {
pname = "nsq";
version = "1.3.0";
src = fetchFromGitHub {
owner = "nsqio";
repo = "nsq";
rev = "v${version}";
hash = "sha256-qoAp8yAc4lJmlnHHcZskRzkleZ3Q5Gu3Lhk9u1jMR4g=";
};
vendorHash = "sha256-/5nH7zHg8zxWFgtVzSnfp7RZGvPWiuGSEyhx9fE2Pvo=";
excludedPackages = [ "bench" ];
ldflags = [
"-s"
"-w"
];
meta = with lib; {
homepage = "https://nsq.io/";
description = "Realtime distributed messaging platform";
changelog = "https://github.com/nsqio/nsq/raw/v${version}/ChangeLog.md";
license = licenses.mit;
maintainers = with maintainers; [ blakesmith ];
};
}
|