serfdom: extracted from goPackages

This commit is contained in:
Kamil Chmielewski
2016-06-09 11:22:02 +02:00
parent 6b41b6b908
commit 4ddfe1fc40
5 changed files with 172 additions and 16 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 = "serf-${version}";
version = "20150515-${stdenv.lib.strings.substring 0 7 rev}";
rev = "668982d8f90f5eff4a766583c1286393c1d27f68";
goPackagePath = "github.com/hashicorp/serf";
src = fetchgit {
inherit rev;
url = "https://github.com/hashicorp/serf";
sha256 = "1h05h5xhaj27r1mh5zshnykax29lqjhfc0bx4v9swiwb873c24qk";
};
goDeps = ./deps.json;
}
+23
View File
@@ -0,0 +1,23 @@
[
{
"include": "../../libs.json",
"packages": [
"github.com/armon/go-metrics",
"github.com/mattn/go-isatty",
"github.com/hashicorp/logutils",
"github.com/armon/go-radix",
"github.com/bgentry/speakeasy",
"github.com/hashicorp/go-syslog",
"github.com/hashicorp/memberlist",
"github.com/mitchellh/mapstructure",
"github.com/armon/circbuf",
"github.com/hashicorp/go-msgpack",
"github.com/hashicorp/go.net",
"github.com/hashicorp/mdns",
"github.com/mitchellh/cli",
"github.com/ryanuber/columnize",
"github.com/miekg/dns",
"golang.org/x/crypto"
]
}
]