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

authored by

Aaron Jheng and committed by
GitHub
e8ebea1f 3da286db

+11 -8
+11 -8
pkgs/tools/system/confd/default.nix
··· 1 - { lib, buildGoPackage, fetchFromGitHub }: 2 3 - buildGoPackage rec { 4 pname = "confd"; 5 - version = "0.16.0"; 6 - rev = "v${version}"; 7 8 - goPackagePath = "github.com/kelseyhightower/confd"; 9 - subPackages = [ "./" ]; 10 11 src = fetchFromGitHub { 12 - inherit rev; 13 owner = "kelseyhightower"; 14 repo = "confd"; 15 - sha256 = "0q7r6dkgirnmqi3rhqdaai88jqzw52l6jdrrwsf2qq0hva09961p"; 16 }; 17 18 meta = { 19 description = "Manage local application configuration files using templates and data from etcd or consul";
··· 1 + { lib, buildGoModule, fetchFromGitHub }: 2 3 + buildGoModule { 4 pname = "confd"; 5 + version = "0.16-unstable-2023-12-09"; 6 7 8 src = fetchFromGitHub { 9 owner = "kelseyhightower"; 10 repo = "confd"; 11 + rev = "919444eb6cf721d198b2bb18581d0f0b3734d107"; 12 + hash = "sha256-/HlL+vxERSOUKIxdtlZDZrpYjGXon3KMwoYUcp8iOug="; 13 }; 14 + 15 + vendorHash = null; 16 + 17 + subPackages = [ "." ]; 18 + 19 + ldflags = [ "-s" "-w" ]; 20 21 meta = { 22 description = "Manage local application configuration files using templates and data from etcd or consul";