Unverified Commit e8ebea1f authored by Aaron Jheng's avatar Aaron Jheng Committed by GitHub
Browse files

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

parent 3da286db
Loading
Loading
Loading
Loading
+11 −8
Original line number Diff line number Diff line
{ 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";