about summary refs log tree commit diff
path: root/pkgs/tools/system/confd/default.nix
blob: 5e5e0edcfe58f1286972d5a3fb47310384a08884 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{ stdenv, lib, buildGoPackage, fetchgit, fetchhg, fetchbzr, fetchsvn }:

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