mirror of
https://codeberg.org/guix/guix.git
synced 2026-01-29 04:01:28 -06:00
gnu: Add perl-module-mask.
* gnu/packages/perl.scm (perl-module-mask): New variable. Change-Id: Ic254aa119255f6e1009977369e64393e8788e4cd Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com>
This commit is contained in:
parent
3fd0aeaac3
commit
e2867a9aa0
1 changed files with 25 additions and 0 deletions
|
|
@ -4859,6 +4859,31 @@ functionality for hashes. The primary focus for the moment is providing a
|
|||
common API - speeding up by XS is far away at the moment.")
|
||||
(license license:perl-license)))
|
||||
|
||||
(define-public perl-module-mask
|
||||
(package
|
||||
(name "perl-module-mask")
|
||||
(version "0.06")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (string-append
|
||||
"mirror://cpan/authors/id/M/MA/MATTLAW/Module-Mask-" version
|
||||
".tar.gz"))
|
||||
(sha256
|
||||
(base32 "0xvy3rybhgr2r122b0zp4lq4n5jpy9pm87kr0a0s57qwy8gzhwrd"))))
|
||||
(build-system perl-build-system)
|
||||
(native-inputs (list perl-module-build))
|
||||
(propagated-inputs (list perl-module-util perl-test-pod
|
||||
perl-test-pod-coverage))
|
||||
(home-page "https://metacpan.org/release/Module-Mask")
|
||||
(synopsis "Pretend certain modules are not installed")
|
||||
(description
|
||||
"Sometimes you need to test what happens when a given module is not
|
||||
installed. This module provides a way of temporarily hiding installed
|
||||
modules from perl's require mechanism. The Module::Mask object adds itself
|
||||
to @@INC and blocks require calls to restricted modules.")
|
||||
(license license:perl-license)))
|
||||
|
||||
(define-public perl-eval-closure
|
||||
(package
|
||||
(name "perl-eval-closure")
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue