prometheus-redis-exporter: 1.51.0 -> 1.52.0

ChangeLog: https://github.com/oliver006/redis_exporter/releases/tag/v1.52.0
This commit is contained in:
Maximilian Bosch 2023-08-14 16:11:53 +02:00
parent afde5d87aa
commit c6edc47816
No known key found for this signature in database
GPG Key ID: 9A6EEA275CA5BE0A

View File

@ -1,25 +1,17 @@
{ lib, buildGoModule, fetchFromGitHub, nixosTests, fetchpatch }:
{ lib, buildGoModule, fetchFromGitHub, nixosTests }:
buildGoModule rec {
pname = "redis_exporter";
version = "1.51.0";
version = "1.52.0";
src = fetchFromGitHub {
owner = "oliver006";
repo = "redis_exporter";
rev = "v${version}";
sha256 = "sha256-NvkAwUrygjys25lcTxtRnrex4+XIK2yzqKkk26f4cmE=";
sha256 = "sha256-DVl67+pouQHg26vF5ONntPjQfyxnLusI3LTpT96ogNw=";
};
patches = [
# https://github.com/oliver006/redis_exporter/pull/812
(fetchpatch {
url = "https://github.com/Ma27/redis_exporter/commit/250b2e9febbadef326ca9ae68c372dfaabd53ca9.patch";
sha256 = "sha256-G1OIUwlFZ06UWudWvc6v1YFcRz05ji1326nUcd9zYDc=";
})
];
vendorHash = "sha256-S7cEaFBgyvDmsNq+NvqtC8I2SRL/ngXUuNdx6TN/riI=";
vendorHash = "sha256-nezvUbKZ8yi7Etp/dg3sT2g5bWBFMYZimt31NT91BEo=";
ldflags = [
"-X main.BuildVersion=${version}"