2018-10-26 16:07:56 +00:00
|
|
|
{ stdenv, buildGoPackage, fetchFromGitHub }:
|
2016-06-04 18:40:56 +00:00
|
|
|
|
2016-06-07 20:32:34 +00:00
|
|
|
buildGoPackage rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "consul";
|
2019-09-21 17:41:38 +00:00
|
|
|
version = "1.6.1";
|
2016-06-04 18:40:56 +00:00
|
|
|
rev = "v${version}";
|
|
|
|
|
|
|
|
goPackagePath = "github.com/hashicorp/consul";
|
|
|
|
|
2018-10-26 16:07:56 +00:00
|
|
|
# Note: Currently only release tags are supported, because they have the Consul UI
|
|
|
|
# vendored. See
|
|
|
|
# https://github.com/NixOS/nixpkgs/pull/48714#issuecomment-433454834
|
|
|
|
# If you want to use a non-release commit as `src`, you probably want to improve
|
|
|
|
# this derivation so that it can build the UI's JavaScript from source.
|
|
|
|
# See https://github.com/NixOS/nixpkgs/pull/49082 for something like that.
|
|
|
|
# Or, if you want to patch something that doesn't touch the UI, you may want
|
|
|
|
# to apply your changes as patches on top of a release commit.
|
2016-06-04 21:24:19 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "hashicorp";
|
2019-08-31 14:46:45 +00:00
|
|
|
repo = pname;
|
2016-06-04 18:40:56 +00:00
|
|
|
inherit rev;
|
2019-09-21 17:41:38 +00:00
|
|
|
sha256 = "00dvvxi7y80v2b6wzwyfzhxv1ksnl1m0nmdjl98dhq5ikb0v7p28";
|
2016-06-04 18:40:56 +00:00
|
|
|
};
|
|
|
|
|
2017-04-03 22:13:15 +00: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 20:03:30 +00:00
|
|
|
homepage = https://www.consul.io/;
|
2017-02-16 18:54:08 +00:00
|
|
|
platforms = platforms.linux ++ platforms.darwin;
|
|
|
|
license = licenses.mpl20;
|
2018-10-26 16:07:56 +00:00
|
|
|
maintainers = with maintainers; [ pradeepchhetri vdemeester nh2 ];
|
2017-02-16 18:54:08 +00:00
|
|
|
};
|
2016-06-04 18:40:56 +00:00
|
|
|
}
|