nixpkgs/pkgs/servers/consul/default.nix

37 lines
1.4 KiB
Nix
Raw Normal View History

{ stdenv, buildGoPackage, fetchFromGitHub }:
2016-06-04 18:40:56 +00:00
2016-06-07 20:32:34 +00:00
buildGoPackage rec {
2016-06-04 18:40:56 +00:00
name = "consul-${version}";
2019-03-05 11:35:22 +00:00
version = "1.4.2";
2016-06-04 18:40:56 +00:00
rev = "v${version}";
goPackagePath = "github.com/hashicorp/consul";
# 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";
repo = "consul";
2016-06-04 18:40:56 +00:00
inherit rev;
2019-03-05 11:35:22 +00:00
sha256 = "1nprl9kcb98ikcmk7safji3hl4kfacx0gnh05k8m4ysfz6mr7zri";
2016-06-04 18:40:56 +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";
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 vdemeester nh2 ];
2017-02-16 18:54:08 +00:00
};
2016-06-04 18:40:56 +00:00
}