From e679cd0cbae5a1f8aaa860810a36029f42a823e5 Mon Sep 17 00:00:00 2001 From: "Zak B. Elep" Date: Sun, 7 Aug 2022 12:17:03 +0800 Subject: [PATCH] perlPackages.FutureIO: init at 0.11 --- pkgs/top-level/perl-packages.nix | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/pkgs/top-level/perl-packages.nix b/pkgs/top-level/perl-packages.nix index 97bfa9c7ea15..9c55b6cfc8dc 100644 --- a/pkgs/top-level/perl-packages.nix +++ b/pkgs/top-level/perl-packages.nix @@ -9277,6 +9277,23 @@ let }; }; + FutureIO = buildPerlModule { + pname = "Future-IO"; + version = "0.11"; + src = fetchurl { + url = "mirror://cpan/authors/id/P/PE/PEVANS/Future-IO-0.11.tar.gz"; + sha256 = "sha256-dVM2JvgfdoxfIxyXAhBsJbV3KotplcqixYvMSsyRB8k="; + }; + buildInputs = [ TestIdentity ]; + propagatedBuildInputs = [ Future StructDumb ]; + preCheck = "rm t/06connect.t"; # this test fails in sandbox + meta = { + description = "Future-returning IO methods"; + license = with lib.licenses; [ artistic1 gpl1Plus ]; + maintainers = [ maintainers.zakame ]; + }; + }; + GamesSolitaireVerify = buildPerlModule { pname = "Games-Solitaire-Verify"; version = "0.2403";