nsq: Move to go-packages and 0.2.28 -> 0.3.5

This commit is contained in:
William A. Kennington III
2015-09-02 18:15:01 -07:00
parent 5f35b0f7da
commit cb8a2e9503
3 changed files with 55 additions and 66 deletions
-32
View File
@@ -1,32 +0,0 @@
{ lib, goPackages, fetchurl, fetchgit, fetchhg, fetchbzr, fetchFromGitHub }:
with goPackages;
buildGoPackage rec {
version = "0.2.28";
name = "nsq-${version}";
goPackagePath = "github.com/bitly/nsq";
src = fetchFromGitHub {
owner = "bitly";
repo = "nsq";
rev = "v${version}";
sha256 = "0drmf1j5w3q4l6f7xjy3y7d7cl50gcx0qwci6mahxsyaaclx60yx";
};
subPackages = [ "nsqadmin" ] ++
map (x: "apps/"+x) [ "nsq_pubsub" "nsq_stat" "nsq_tail"
"nsq_to_file" "nsq_to_http" "nsq_to_nsq"
"nsqd" "nsqlookupd" ];
buildInputs = [ go-nsq go-options toml perks go-hostpool ];
dontInstallSrc = true;
meta = with lib; {
description = "A realtime distributed messaging platform";
homepage = http://nsq.io/;
license = licenses.mit;
maintainers = with maintainers; [ cstrahan ];
platforms = platforms.unix;
};
}