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 <ludo@gnu.org>master
parent
57bb1998a0
commit
7d6da9412e
|
@ -38,6 +38,7 @@
|
||||||
;;; Copyright © 2023 Andreas Enge <andreas@enge.fr>
|
;;; Copyright © 2023 Andreas Enge <andreas@enge.fr>
|
||||||
;;; Copyright © 2023 Jake Leporte <jakeleporte@outlook.com>
|
;;; Copyright © 2023 Jake Leporte <jakeleporte@outlook.com>
|
||||||
;;; Copyright © 2023 Nicolas Graves <ngraves@ngraves.fr>
|
;;; Copyright © 2023 Nicolas Graves <ngraves@ngraves.fr>
|
||||||
|
;;; Copyright © 2020, 2023 Tim Gesthuizen <tim.gesthuizen@yahoo.de>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; 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.")
|
return value is the sub.")
|
||||||
(license (package-license perl))))
|
(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
|
(define-public perl-sub-quote
|
||||||
(package
|
(package
|
||||||
(name "perl-sub-quote")
|
(name "perl-sub-quote")
|
||||||
|
|
Reference in New Issue