civodul pushed a commit to branch master
in repository guix.

commit 7d6da9412ef2b888fa6a9d03fb8aa840d1cab9e1
Author: Steve George <[email protected]>
AuthorDate: Fri Apr 26 13:42:02 2024 +0200

    gnu: Add perl-sub-override.
    
    * gnu/packages/crates-io.scm (perl-sub-override): New variable.
    
    Change-Id: I5a366862bb5bfd777094e2d58239d50aad95577c
    
    -- >8 --
    Originally part of https://issues.guix.gnu.org/44447
    
    Change-Id: Ib4542ceedcff114e1184fc8bafac0f76985b78be
    Signed-off-by: Ludovic Courtès <[email protected]>
---
 gnu/packages/perl.scm | 21 +++++++++++++++++++++
 1 file changed, 21 insertions(+)

diff --git a/gnu/packages/perl.scm b/gnu/packages/perl.scm
index 362957d5f5..a72c3af765 100644
--- a/gnu/packages/perl.scm
+++ b/gnu/packages/perl.scm
@@ -38,6 +38,7 @@
 ;;; Copyright © 2023 Andreas Enge <[email protected]>
 ;;; Copyright © 2023 Jake Leporte <[email protected]>
 ;;; Copyright © 2023 Nicolas Graves <[email protected]>
+;;; Copyright © 2020, 2023 Tim Gesthuizen <[email protected]>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -10118,6 +10119,26 @@ specification is omitted in the name, then the current 
package is used.  The
 return value is the sub.")
     (license (package-license perl))))
 
+(define-public perl-sub-override
+  (package
+    (name "perl-sub-override")
+    (version "0.10")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (string-append
+             "https://cpan.metacpan.org/authors/id/O/OV/OVID/Sub-Override-";
+             version ".tar.gz"))
+       (sha256
+        (base32 "0ixbaxhnicx90483rqhcz5dzqzxfwjxf2crghw3lgmasairwr3bd"))))
+    (native-inputs `(("perl-test-fatal" ,perl-test-fatal)))
+    (build-system perl-build-system)
+    (home-page "https://metacpan.org/release/Sub-Override";)
+    (synopsis "Perl extension to override a subroutine")
+    (description "A @code{Sub::Override}} module that makes it easy to override
++subroutines.  Particularly useful for mocking in tests.")
+    (license (package-license perl))))
+
 (define-public perl-sub-quote
   (package
     (name "perl-sub-quote")

Reply via email to