perlPackages.IOPty: init at 1.16

This commit is contained in:
Sandro Jäckel 2021-08-27 23:48:01 +02:00
parent 94db887ac7
commit 00682a56b9
No known key found for this signature in database
GPG Key ID: 3AF5A43A3EECC2E5

View File

@ -10643,6 +10643,23 @@ let
propagatedBuildInputs = [ pkgs.more FileWhich TermReadKey ]; # `more` used in tests
};
IOPty = buildPerlModule {
pname = "IO-Pty";
version = "1.16";
src = fetchurl {
url = "mirror://cpan/authors/id/T/TO/TODDR/IO-Tty-1.16.tar.gz";
sha256 = "sha256-jxoJwHBzitxpXfkD8uf3QwjdjZkbkUwLw5Cg5gISlN0=";
};
buildPhase = "make";
checkPhase = "make test";
installPhase = "make install";
meta = {
homepage = "https://github.com/toddr/IO-Tty";
description = "Pseudo TTY object class";
license = with lib.licenses; [ artistic1 gpl1Plus ];
};
};
IOPrompt = buildPerlModule {
pname = "IO-Prompt";
version = "0.997004";