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