nixpkgs/pkgs/tools/system/consul-template/default.nix

28 lines
816 B
Nix
Raw Normal View History

{ lib, buildGoModule, fetchFromGitHub }:
2021-01-03 15:51:41 +00:00
buildGoModule rec {
pname = "consul-template";
2021-02-21 10:36:01 +00:00
version = "0.25.2";
src = fetchFromGitHub {
owner = "hashicorp";
repo = "consul-template";
2021-01-03 15:51:41 +00:00
rev = "v${version}";
2021-02-21 10:36:01 +00:00
sha256 = "sha256-r9/CxXFaeod48NgOFWhl+axiNqjaU+RIEHI71fmYzP8=";
2017-02-01 03:38:01 +00:00
};
2021-02-21 10:36:01 +00:00
vendorSha256 = "sha256-DLjaDj3fJYl5ICxJuaCLKdd/AfwfUIM8teJLs3a2MHo=";
2021-01-03 15:51:41 +00:00
# consul-template tests depend on vault and consul services running to
# execute tests so we skip them here
doCheck = false;
meta = with lib; {
homepage = "https://github.com/hashicorp/consul-template/";
2017-02-01 03:38:01 +00:00
description = "Generic template rendering and notifications with Consul";
platforms = platforms.linux ++ platforms.darwin;
license = licenses.mpl20;
2021-01-03 15:51:41 +00:00
maintainers = with maintainers; [ cpcloud pradeepchhetri ];
};
}