confd: 0.16.0 -> 0.16-unstable-2023-12-09 (#297095)

This commit is contained in:
Aaron Jheng 2024-03-19 21:42:55 +08:00 committed by GitHub
parent 3da286dbe2
commit e8ebea1fd1
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,20 +1,23 @@
{ lib, buildGoPackage, fetchFromGitHub }:
{ lib, buildGoModule, fetchFromGitHub }:
buildGoPackage rec {
buildGoModule {
pname = "confd";
version = "0.16.0";
rev = "v${version}";
version = "0.16-unstable-2023-12-09";
goPackagePath = "github.com/kelseyhightower/confd";
subPackages = [ "./" ];
src = fetchFromGitHub {
inherit rev;
owner = "kelseyhightower";
repo = "confd";
sha256 = "0q7r6dkgirnmqi3rhqdaai88jqzw52l6jdrrwsf2qq0hva09961p";
rev = "919444eb6cf721d198b2bb18581d0f0b3734d107";
hash = "sha256-/HlL+vxERSOUKIxdtlZDZrpYjGXon3KMwoYUcp8iOug=";
};
vendorHash = null;
subPackages = [ "." ];
ldflags = [ "-s" "-w" ];
meta = {
description = "Manage local application configuration files using templates and data from etcd or consul";
homepage = "https://github.com/kelseyhightower/confd";