diff options
| author | Patrick Norton <patrick.147.norton@gmail.com> | 2025-11-09 15:18:43 -0500 |
|---|---|---|
| committer | Liliana Marie Prikler <liliana.prikler@gmail.com> | 2025-11-15 17:32:49 +0100 |
| commit | b49a8c6937f79dfd85f036111a8b6486ad5147d1 (patch) | |
| tree | 54ea4896e018e149fbb43ee539719053309b8316 | |
| parent | 87eabea47f406934a602d4ac0140a20d97f8019f (diff) | |
gnu: Add perl-test-run-plugin-alternateinterpreters.
* gnu/packages/perl.scm (perl-test-run-plugin-alternateinterpreters):
New variable.
Change-Id: I598c22ef7b9f762c8d96fd5b65bdcea95f0dc288
Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com>
| -rw-r--r-- | gnu/packages/perl.scm | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/gnu/packages/perl.scm b/gnu/packages/perl.scm index 053e8ccd2a5..e399ff20b70 100644 --- a/gnu/packages/perl.scm +++ b/gnu/packages/perl.scm @@ -5037,6 +5037,33 @@ The top-level \"Test::Run\" by itself does not do much. You should refer to Task::Test::Run::AllPlugins for more detailed instructions.") (license license:x11))) +(define-public perl-test-run-plugin-alternateinterpreters + (package + (name "perl-test-run-plugin-alternateinterpreters") + (version "0.0125") + (source + (origin + (method url-fetch) + (uri (string-append + "mirror://cpan/authors/id/S/SH/SHLOMIF/" + "Test-Run-Plugin-AlternateInterpreters-" + version ".tar.gz")) + (sha256 + (base32 "1fwr687h05fg6xn6vsfx9ll2ha8c7brmqbiz18biz0jx2jdnihsj")))) + (build-system perl-build-system) + (native-inputs (list perl-module-build perl-test-run-cmdline + perl-test-trap perl-yaml-libyaml)) + (propagated-inputs (list perl-moose perl-mro-compat perl-test-run + perl-test-run-cmdline)) + (home-page + "https://metacpan.org/release/Test-Run-Plugin-AlternateInterpreters") + (synopsis + "Define different interpreters for different test scripts with Test::Run") + (description + "This package allows you to define different interpreters for different test +scripts with Test::Run.") + (license license:x11))) + (define-public perl-eval-closure (package (name "perl-eval-closure") |
