summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorAnderson Torres <anderson.torres.8519@gmail.com>2025-12-30 21:46:03 -0300
committerAndreas Enge <andreas@enge.fr>2026-02-19 21:36:53 +0100
commit601103a027dc7db49556f880f6f7fba65bdff810 (patch)
tree6c68d0ddd1c1bba7ef148d832aac636255ac97e2 /gnu
parent730331a0c966890b94a749ce0f5efb987fc9eb57 (diff)
gnu: Add perl-io-pty.
* gnu/packages/perl.scm (perl-io-pty): New variable. Change-Id: Ie208d9c058e4722d2b3585cca1bbe1ca7d3066bf
Diffstat (limited to 'gnu')
-rw-r--r--gnu/packages/perl.scm21
1 files changed, 21 insertions, 0 deletions
diff --git a/gnu/packages/perl.scm b/gnu/packages/perl.scm
index bbe4cd3b374..7128b570c14 100644
--- a/gnu/packages/perl.scm
+++ b/gnu/packages/perl.scm
@@ -7216,6 +7216,27 @@ and busy().")
display output if a TTY is in use.")
(license (package-license perl))))
+(define-public perl-io-pty
+ (package
+ (name "perl-io-pty")
+ (version "1.20")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append "mirror://cpan/authors/id/T/TO/TODDR/"
+ "IO-Tty-" version ".tar.gz"))
+ (sha256
+ (base32
+ "1brhszk5p92khn9jjpxpas8ydlcyza6vicmrkhl96f32hpy0jlxi"))))
+ (build-system perl-build-system)
+ (synopsis "Pseudo TTY object class")
+ (description
+ "@code{IO::Pty} provides an interface to allow the creation of a
+pseudo tty. @code{IO::Pty} inherits from @code{IO::Handle} and so
+provides all the methods defined by the @code{IO::Handle} package.")
+ (home-page "https://metacpan.org/dist/IO-Tty")
+ (license (package-license perl))))
+
(define-public perl-io-string
(package
(name "perl-io-string")