From 26d63a058d5b16e706b5ae4d1591f351c5f9c54c Mon Sep 17 00:00:00 2001 From: Patrick Norton Date: Sun, 9 Nov 2025 15:19:41 -0500 Subject: [PATCH] gnu: Add perl-test-run-plugin-breakonfailure. * gnu/packages/perl.scm (perl-test-run-plugin-breakonfailure): New variable. Change-Id: I719ebe327e363bfd8f03addb8bcdbe4040b25b5b Signed-off-by: Liliana Marie Prikler --- gnu/packages/perl.scm | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/gnu/packages/perl.scm b/gnu/packages/perl.scm index e399ff20b705dbe68dd1f54abf35b09ae6a48a90..4cae6c2628e9265de3023eec9cfdb3f54e7c313d 100644 --- a/gnu/packages/perl.scm +++ b/gnu/packages/perl.scm @@ -5064,6 +5064,31 @@ Task::Test::Run::AllPlugins for more detailed instructions.") scripts with Test::Run.") (license license:x11))) +(define-public perl-test-run-plugin-breakonfailure + (package + (name "perl-test-run-plugin-breakonfailure") + (version "0.0.6") + (source + (origin + (method url-fetch) + (uri (string-append + "mirror://cpan/authors/id/S/SH/SHLOMIF/" + "Test-Run-Plugin-BreakOnFailure-v" + version ".tar.gz")) + (sha256 + (base32 "1a8k9p89s31wrax0yk8p0zsvj40mjgi0bnjmj0949hghwbihw650")))) + (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-BreakOnFailure") + (synopsis "Stop processing the entire test suite on first failure") + (description + "This package allows you to stop processing the entire test suite after the +first failure, instead of going all the way through it.") + (license license:x11))) + (define-public perl-eval-closure (package (name "perl-eval-closure")