2018-07-21 01:44:44 +01:00
|
|
|
{ stdenv, buildGoPackage, consul-ui, fetchFromGitHub }:
|
2016-06-04 19:40:56 +01:00
|
|
|
|
2016-06-07 21:32:34 +01:00
|
|
|
buildGoPackage rec {
|
2016-06-04 19:40:56 +01:00
|
|
|
name = "consul-${version}";
|
2017-09-28 00:04:18 +01:00
|
|
|
version = "0.9.3";
|
2016-06-04 19:40:56 +01:00
|
|
|
rev = "v${version}";
|
|
|
|
|
|
|
|
goPackagePath = "github.com/hashicorp/consul";
|
|
|
|
|
2016-06-04 22:24:19 +01:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "hashicorp";
|
|
|
|
repo = "consul";
|
2016-06-04 19:40:56 +01:00
|
|
|
inherit rev;
|
2017-09-28 00:04:18 +01:00
|
|
|
sha256 = "1176frp7kimpycsmz9wrbizf46jgxr8jq7hz5w4q1x90lswvrxv3";
|
2016-06-04 19:40:56 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
# Keep consul.ui for backward compatability
|
2016-06-04 22:24:19 +01:00
|
|
|
passthru.ui = consul-ui;
|
2017-02-16 18:54:08 +00:00
|
|
|
|
2017-04-03 23:13:15 +01:00
|
|
|
preBuild = ''
|
|
|
|
buildFlagsArray+=("-ldflags" "-X github.com/hashicorp/consul/version.GitDescribe=v${version} -X github.com/hashicorp/consul/version.Version=${version} -X github.com/hashicorp/consul/version.VersionPrerelease=")
|
|
|
|
'';
|
|
|
|
|
2017-02-16 18:54:08 +00:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Tool for service discovery, monitoring and configuration";
|
2017-08-01 21:03:30 +01:00
|
|
|
homepage = https://www.consul.io/;
|
2017-02-16 18:54:08 +00:00
|
|
|
platforms = platforms.linux ++ platforms.darwin;
|
|
|
|
license = licenses.mpl20;
|
|
|
|
maintainers = with maintainers; [ pradeepchhetri ];
|
|
|
|
};
|
2016-06-04 19:40:56 +01:00
|
|
|
}
|