gnu: Add perl-memoize.

* gnu/packages/perl.scm (perl-memoize): New variable.
This commit is contained in:
Roel Janssen 2018-04-04 15:16:53 +02:00
parent 0d5c19452f
commit e147856397
No known key found for this signature in database
GPG key ID: C3EC1DCA843072E1

View file

@ -4760,6 +4760,25 @@ (define-public perl-mailtools
@end table")
(license perl-license)))
(define-public perl-memoize
(package
(name "perl-memoize")
(version "1.03")
(source (origin
(method url-fetch)
(uri (string-append
"mirror://cpan/authors/id/M/MJ/MJD/Memoize-"
version".tgz"))
(sha256
(base32
"1wysq3wrmf1s7s3phimzn7n0dswik7x53apykzgb0l2acigwqfaj"))))
(build-system perl-build-system)
(home-page "http://search.cpan.org/dist/Memoize/")
(synopsis "Make functions faster by trading space for time")
(description "This package transparently speeds up functions by caching
return values, trading space for time.")
(license perl-license)))
(define-public perl-memoize-expirelru
(package
(name "perl-memoize-expirelru")