3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/servers/serfdom/default.nix

29 lines
778 B
Nix
Raw Normal View History

2015-02-04 14:23:52 +00:00
{ lib, goPackages, fetchFromGitHub }:
2014-02-27 18:11:08 +00:00
2015-02-04 14:23:52 +00:00
with goPackages;
buildGoPackage rec {
2014-07-25 16:51:54 +01:00
version = "0.6.3";
2014-06-23 09:42:37 +01:00
name = "serfdom-${version}";
2015-02-04 14:23:52 +00:00
goPackagePath = "github.com/hashicorp/serf";
2014-02-27 18:11:08 +00:00
2015-02-04 14:23:52 +00:00
src = fetchFromGitHub {
owner = "hashicorp";
repo = "serf";
rev = "v${version}";
sha256 = "0ck77ji28bvm4ahzxyyi4sm17c3fxc16k0k5mihl1nlkgdd73m8y";
2014-06-23 09:42:37 +01:00
};
2014-02-27 18:11:08 +00:00
2015-02-04 14:23:52 +00:00
buildInputs = [ cli mapstructure memberlist logutils go-syslog mdns columnize circbuf ];
2014-02-27 18:11:08 +00:00
dontInstallSrc = true;
2015-02-04 14:23:52 +00:00
meta = with lib; {
description = "A service discovery and orchestration tool that is decentralized, highly available, and fault tolerant";
2014-06-23 09:42:37 +01:00
homepage = http://www.serfdom.io/;
license = licenses.mpl20;
maintainers = with maintainers; [ msackman cstrahan ];
platforms = platforms.unix;
};
}