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

28 lines
739 B
Nix
Raw Normal View History

2016-06-07 21:32:34 +01:00
{ stdenv, lib, 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-02-16 18:54:08 +00:00
version = "0.7.5";
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-02-16 18:54:08 +00:00
sha256 = "0zh4j5p0v41v7i6v084dgsdchx1azjs2mjb3dlfdv671rsnwi54z";
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
meta = with stdenv.lib; {
description = "Tool for service discovery, monitoring and configuration";
homepage = "https://www.consul.io/";
platforms = platforms.linux ++ platforms.darwin;
license = licenses.mpl20;
maintainers = with maintainers; [ pradeepchhetri ];
};
2016-06-04 19:40:56 +01:00
}