Merge pull request #298118 from Ma27/bump-nextcloud-exporter

prometheus-nextcloud-exporter: 0.6.2 -> 0.7.0
This commit is contained in:
Maximilian Bosch 2024-03-26 17:08:49 +00:00 committed by GitHub
commit fcf597ff88
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 4 additions and 4 deletions

View File

@ -1,17 +1,17 @@
{ lib, fetchFromGitHub, buildGoModule, nixosTests, fetchpatch }:
{ lib, fetchFromGitHub, buildGoModule, nixosTests }:
buildGoModule rec {
pname = "prometheus-nextcloud-exporter";
version = "0.6.2";
version = "0.7.0";
src = fetchFromGitHub {
owner = "xperimental";
repo = "nextcloud-exporter";
rev = "v${version}";
sha256 = "sha256-OiuhxawEpD29EhbzA9DYeJ1J1/uMQGgBTZR9m/5egHI=";
sha256 = "sha256-tbzXxrAzMZyyePeI+Age31+XJFJcp+1RqoCAGCKaLmQ=";
};
vendorHash = "sha256-QlMj4ATpJATlQAsrxIHG/1vrD5E/4brsda3BoGGzDgk=";
vendorHash = "sha256-9ABGc5uSOIjhKcnTH5WOuwg0kXhFsxOlAkatcOQy3dg=";
passthru.tests = { inherit (nixosTests.prometheus-exporters) nextcloud; };