nsq: extracted from goPackages

This commit is contained in:
Kamil Chmielewski
2016-06-09 11:22:02 +02:00
parent 144ea78753
commit 2bee32508c
5 changed files with 118 additions and 12 deletions
+20
View File
@@ -0,0 +1,20 @@
# This file was generated by go2nix.
{ stdenv, lib, goPackages, fetchgit, fetchhg, fetchbzr, fetchsvn }:
with goPackages;
buildGoPackage rec {
name = "nsq-${version}";
version = "0.3.5";
rev = "v${version}";
goPackagePath = "github.com/bitly/nsq";
src = fetchgit {
inherit rev;
url = "https://github.com/nsqio/nsq";
sha256 = "1r7jgplzn6bgwhd4vn8045n6cmm4iqbzssbjgj7j1c28zbficy2f";
};
goDeps = ./deps.json;
}
+16
View File
@@ -0,0 +1,16 @@
[
{
"include": "../../libs.json",
"packages": [
"github.com/mreiferson/go-snappystream",
"github.com/bitly/go-nsq",
"github.com/bitly/go-simplejson",
"github.com/blang/semver",
"github.com/bmizerany/perks",
"github.com/BurntSushi/toml",
"github.com/bitly/go-hostpool",
"github.com/bitly/timer_metrics",
"github.com/mreiferson/go-options"
]
}
]