dannym pushed a commit to branch master
in repository guix.

commit 8444ae79662df6127f7b6df099ac62bd1f240c93
Author: Antero Mejr <[email protected]>
AuthorDate: Sun Jun 4 17:42:22 2023 +0000

    gnu: Add perl-meta-builder.
    
    * gnu/packages/perl.scm (perl-meta-builder): New variable.
    
    Signed-off-by: Danny Milosavljevic <[email protected]>
---
 gnu/packages/perl.scm | 26 ++++++++++++++++++++++++++
 1 file changed, 26 insertions(+)

diff --git a/gnu/packages/perl.scm b/gnu/packages/perl.scm
index 18b148c5dc..e6b13abc68 100644
--- a/gnu/packages/perl.scm
+++ b/gnu/packages/perl.scm
@@ -7235,6 +7235,32 @@ the argument to the CACHESIZE parameter, will be 
cached.")
 perspective, how much memory a process is using at any given time.")
     (license license:perl-license)))
 
+(define-public perl-meta-builder
+  (package
+    (name "perl-meta-builder")
+    (version "0.004")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append
+                    "mirror://cpan/authors/id/E/EX/EXODIST/Meta-Builder-"
+                    version ".tar.gz"))
+              (sha256
+               (base32
+                "1zjnrwwvjxbw1baicr2amsyy7gr18nkmflxq3sr9vsq6fam9kd5c"))))
+    (build-system perl-build-system)
+    (native-inputs (list perl-fennec-lite
+                         perl-module-build
+                         perl-test-exception))
+    (home-page "https://metacpan.org/release/Meta-Builder";)
+    (synopsis "Tools for creating Meta objects to track custom metrics")
+    (description
+     "@code{Meta::Builder} is designed to be a generic tool for writing Meta
+objects.  Unlike specialized tools, @code{Meta::Builder} makes no assumptions
+about what metrics you will care about.  @code{Meta::Builder} also makes it
+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-mime-base64
   (package
     (name "perl-mime-base64")

Reply via email to