gnu: Add perl-tie-handle-offset.

* gnu/packages/perl.scm (perl-tie-handle-offset): New variable.
master
Christopher Baines 2019-03-24 18:09:51 +00:00
parent 366b76c1cd
commit 54a51789fd
No known key found for this signature in database
GPG Key ID: 5E28A33B0B84F577
1 changed files with 22 additions and 0 deletions

View File

@ -8654,6 +8654,28 @@ can also be set to any arbitrary supplied order. The familiar perl array
operations can also be performed on the IxHash.")
(license (package-license perl))))
(define-public perl-tie-handle-offset
(package
(name "perl-tie-handle-offset")
(version "0.004")
(source
(origin
(method url-fetch)
(uri (string-append
"mirror://cpan/authors/id/D/DA/DAGOLDEN/Tie-Handle-Offset-"
version
".tar.gz"))
(sha256
(base32
"17m8s8314wi4g0wasdxk15rf12vzsgzmcbr598jam5f6bl2kk7zf"))))
(build-system perl-build-system)
(home-page "https://metacpan.org/release/Tie-Handle-Offset")
(synopsis "Special file handle that hides the beginning of a file")
(description
"This modules provides a file handle that hides the beginning of a file,
by modifying the @code{seek()} and @code{tell()} calls.")
(license asl2.0)))
(define-public perl-tie-toobject
(package
(name "perl-tie-toobject")