summary refs log tree commit diff
path: root/pkgs/tools/system/confd/default.nix
blob: 416c856a5ae46744244bcb2379ed9475c2730727 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# This file was generated by go2nix.
{ stdenv, lib, goPackages, fetchgit, fetchhg, fetchbzr, fetchsvn }:

with goPackages;

buildGoPackage rec {
  name = "confd-${version}";
  version = "0.9.0";
  rev = "v${version}";

  goPackagePath = "github.com/kelseyhightower/confd";
  subPackages = [ "./" ];

  src = fetchgit {
    inherit rev;
    url = "https://github.com/kelseyhightower/confd";
    sha256 = "0rz533575hdcln8ciqaz79wbnga3czj243g7fz8869db6sa7jwlr";
  };

  goDeps = ./deps.json;
}