1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-23 06:01:15 +00:00
nixpkgs/pkgs/tools/system/consul-template/default.nix
2016-06-09 13:08:00 +02:00

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";
};
}