serfdom: Migrate to go-packages

This commit is contained in:
William A. Kennington III
2015-09-02 17:51:03 -07:00
parent 8f34c44824
commit 5f35b0f7da
3 changed files with 6 additions and 39 deletions

View File

@@ -1,28 +0,0 @@
{ lib, goPackages, fetchFromGitHub }:
with goPackages;
buildGoPackage rec {
version = "0.6.4";
name = "serfdom-${version}";
goPackagePath = "github.com/hashicorp/serf";
src = fetchFromGitHub {
owner = "hashicorp";
repo = "serf";
rev = "v${version}";
sha256 = "1fhz8wrvsmgaky22n255w9hkyfph2n45c47ivdyzrrxisg5j2438";
};
buildInputs = [ cli mapstructure memberlist_v2 logutils go-syslog mdns columnize circbuf ugorji.go ];
dontInstallSrc = true;
meta = with lib; {
description = "A service discovery and orchestration tool that is decentralized, highly available, and fault tolerant";
homepage = http://www.serfdom.io/;
license = licenses.mpl20;
maintainers = with maintainers; [ msackman cstrahan ];
platforms = platforms.unix;
};
}