1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-04-06 21:20:33 +02:00

gnu: Add perl-metrics-any.

* gnu/packages/perl.scm (perl-metrics-any): New variable.

Change-Id: I0df9c005d5cf8d0214c52bce9c504c7d2de8d5fe
Signed-off-by: jgart <jgart@dismail.de>
This commit is contained in:
Maxim Cournoyer
2025-06-18 08:50:58 +09:00
committed by jgart
parent 597119f739
commit 84929efaba

View File

@@ -7585,6 +7585,27 @@ simple for others to extend your meta-object based tools by providing hooks
for other packages to add metrics to your meta object.")
(license license:perl-license)))
(define-public perl-metrics-any
(package
(name "perl-metrics-any")
(version "0.10")
(source
(origin
(method url-fetch)
(uri (string-append "mirror://cpan/authors/id/P/PE/PEVANS/Metrics-Any-"
version ".tar.gz"))
(sha256
(base32 "16xrx0h9gfyj4ky9zvlg1gwm66343w36f6wspcbaa95gr3wss3m9"))))
(build-system perl-build-system)
(native-inputs (list perl-module-build perl-test2-suite))
(home-page "https://metacpan.org/release/Metrics-Any")
(synopsis "Abstract collection of monitoring metrics")
(description "This Perl module provides a central location for modules to
report monitoring metrics, such as counters of the number of times interesting
events have happened, and programs to collect up and send those metrics to
monitoring services.")
(license license:perl-license)))
(define-public perl-mime-base64
(package
(name "perl-mime-base64")