mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-19 04:02:10 +00:00
32 lines
893 B
Nix
32 lines
893 B
Nix
{ lib, buildGoModule, fetchFromGitHub, nixosTests }:
|
|
|
|
buildGoModule rec {
|
|
pname = "consul-template";
|
|
version = "0.33.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "hashicorp";
|
|
repo = "consul-template";
|
|
rev = "v${version}";
|
|
hash = "sha256-78RYFFpsW6onWd1aAxDf28GUblIGVtg0uZeURZPla8E=";
|
|
};
|
|
|
|
vendorHash = "sha256-LRH3wMRSHIpavXSupFA9HLojBqWVObQfL+SM8ah4oBg=";
|
|
|
|
# consul-template tests depend on vault and consul services running to
|
|
# execute tests so we skip them here
|
|
doCheck = false;
|
|
|
|
passthru.tests = {
|
|
inherit (nixosTests) consul-template;
|
|
};
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/hashicorp/consul-template/";
|
|
description = "Generic template rendering and notifications with Consul";
|
|
platforms = platforms.linux ++ platforms.darwin;
|
|
license = licenses.mpl20;
|
|
maintainers = with maintainers; [ cpcloud pradeepchhetri ];
|
|
};
|
|
}
|