gnu: Add Tie-ToObject.

* gnu/packages/perl.scm (perl-tie-toobject): New variable.
master
Eric Bavier 2015-03-20 12:11:28 -05:00
parent b42c8753d2
commit 2775b61b75
1 changed files with 22 additions and 0 deletions

View File

@ -3705,6 +3705,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-toobject
(package
(name "perl-tie-toobject")
(version "0.03")
(source
(origin
(method url-fetch)
(uri (string-append "mirror://cpan/authors/id/N/NU/NUFFIN/"
"Tie-ToObject-" version ".tar.gz"))
(sha256
(base32
"1x1smn1kw383xc5h9wajxk9dlx92bgrbf7gk4abga57y6120s6m3"))))
(build-system perl-build-system)
(propagated-inputs
`(("perl-test-simple" ,perl-test-simple)))
(home-page "http://search.cpan.org/dist/Tie-ToObject")
(synopsis "Tie to an existing Perl object")
(description "This class provides a tie constructor that returns the
object it was given as it's first argument. This way side effects of calling
$object->TIEHASH are avoided.")
(license (package-license perl))))
(define-public perl-time-local
(package
(name "perl-time-local")