gnu: Add perl-io-tty.
* gnu/packages/perl.scm (perl-io-tty): New variable.
This commit is contained in:
parent
14d17788a9
commit
45f5cae655
|
@ -1,5 +1,5 @@
|
||||||
;;; GNU Guix --- Functional package management for GNU
|
;;; GNU Guix --- Functional package management for GNU
|
||||||
;;; Copyright © 2012, 2013 Ludovic Courtès <ludo@gnu.org>
|
;;; Copyright © 2012, 2013, 2014 Ludovic Courtès <ludo@gnu.org>
|
||||||
;;; Copyright © 2013 Andreas Enge <andreas@enge.fr>
|
;;; Copyright © 2013 Andreas Enge <andreas@enge.fr>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
|
@ -102,3 +102,22 @@ lists of files")
|
||||||
provided base directory and can return files (and/or directories if desired)
|
provided base directory and can return files (and/or directories if desired)
|
||||||
matching a regular expression.")
|
matching a regular expression.")
|
||||||
(home-page "http://search.cpan.org/~dopacki/File-List/")))
|
(home-page "http://search.cpan.org/~dopacki/File-List/")))
|
||||||
|
|
||||||
|
(define-public perl-io-tty
|
||||||
|
(package
|
||||||
|
(name "perl-io-tty")
|
||||||
|
(version "1.10")
|
||||||
|
(source (origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (string-append "mirror://cpan/authors/id/T/TO/TODDR/IO-Tty-"
|
||||||
|
version ".tar.gz"))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"1cgqyv1zg8857inlnfczrrgpqr0r6mmqv29b7jlmxv47s4df59ii"))))
|
||||||
|
(build-system perl-build-system)
|
||||||
|
(home-page "http://search.cpan.org/~toddr/IO-Tty/")
|
||||||
|
(synopsis "Perl interface to pseudo ttys")
|
||||||
|
(description
|
||||||
|
"This package provides the 'IO::Pty' and 'IO::Tty' Perl interfaces to
|
||||||
|
pseudo ttys.")
|
||||||
|
(license (package-license perl))))
|
||||||
|
|
Loading…
Reference in New Issue