diff options
author | Maxim Cournoyer <maxim@guixotic.coop> | 2025-06-18 09:15:02 +0900 |
---|---|---|
committer | jgart <jgart@dismail.de> | 2025-06-23 20:06:58 -0400 |
commit | db4d3110b4b9dd2ec6b3dcfd1394042f7966cf22 (patch) | |
tree | 3fe2703b0dfdab38bdb1d6e80f879ab9fac16ef5 | |
parent | 071de28f36afdb584bfb3cdfadc441689f6e2b67 (diff) |
gnu: Add perl-test-future-io-impl.
* gnu/packages/perl-check.scm (perl-test-future-io-impl): New variable.
Change-Id: I7e3421f12c5f62ad3da2da13b01d40431736498c
Signed-off-by: jgart <jgart@dismail.de>
-rw-r--r-- | gnu/packages/perl-check.scm | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/gnu/packages/perl-check.scm b/gnu/packages/perl-check.scm index 5fa342a78e..3d7917efe8 100644 --- a/gnu/packages/perl-check.scm +++ b/gnu/packages/perl-check.scm @@ -790,6 +790,27 @@ processes is complicated. @code{Test::Fork} provides a function to smooth over the complications.") (license perl-license))) +(define-public perl-test-future-io-impl + (package + (name "perl-test-future-io-impl") + (version "0.14") + (source + (origin + (method url-fetch) + (uri (string-append + "mirror://cpan/authors/id/P/PE/PEVANS/Test-Future-IO-Impl-" + version ".tar.gz")) + (sha256 + (base32 "0dg2z3nycnsrx8nmyibr7z9nsmz5w6hbrvsnbhr395nlsccvcz80")))) + (build-system perl-build-system) + (native-inputs (list perl-module-build)) + (propagated-inputs (list perl-test2-suite)) + (home-page "https://metacpan.org/release/Test-Future-IO-Impl") + (synopsis "Acceptance tests for Future::IO implementations") + (description "This module contains a collection of acceptance tests for +implementations of @code{Future::IO}.") + (license perl-license))) + (define-public perl-test-harness (package (name "perl-test-harness") |