mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-12 03:56:17 +03:00
22 lines
491 B
Nix
22 lines
491 B
Nix
# 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;
|
|
}
|