mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 06:01:15 +00:00
16 lines
412 B
Nix
16 lines
412 B
Nix
{ stdenv, lib, buildGo16Package, fetchgit, fetchhg, fetchbzr, fetchsvn }:
|
|
|
|
buildGo16Package rec {
|
|
name = "consul-template-${version}";
|
|
version = "0.14.0";
|
|
rev = "v${version}";
|
|
|
|
goPackagePath = "github.com/hashicorp/consul-template";
|
|
|
|
src = fetchgit {
|
|
inherit rev;
|
|
url = "https://github.com/hashicorp/consul-template";
|
|
sha256 = "15zsax44g3dwjmmm4fpb54mvsjvjf3b6g3ijskgipvhcy0d3j938";
|
|
};
|
|
}
|