me
/
guix
Archived
1
0
Fork 0

gnu: Add perl-storable.

* gnu/packages/perl.scm (perl-storable): New variable.
master
Raghav Gururajan 2021-06-22 09:12:14 -04:00
parent b305487271
commit 11859117d8
No known key found for this signature in database
GPG Key ID: 5F5816647F8BE551
1 changed files with 21 additions and 0 deletions

View File

@ -9206,6 +9206,27 @@ which it is called.")
implementation of @dfn{Principal Component Analysis} (PCA).") implementation of @dfn{Principal Component Analysis} (PCA).")
(license license:perl-license))) (license license:perl-license)))
(define-public perl-storable
(package
(name "perl-storable")
(version "3.15")
(source
(origin
(method url-fetch)
(uri (string-append "mirror://cpan/authors/id/X/XS/XSAWYERX/"
"Storable-" version ".tar.gz"))
(sha256
(base32 "1nkln4fm4962b5jk1dp6lf635nnrj5a5pg1a5xmchvrfrc3asggw"))))
(build-system perl-build-system)
(propagated-inputs
`(("perl-xsloader" ,perl-xsloader)))
(home-page "https://metacpan.org/dist/Storable")
(synopsis "Persistence for Perl data structures")
(description "Storable brings persistence to your Perl data structures
containing SCALAR, ARRAY, HASH or REF objects, i.e. anything that can be
conveniently stored to disk and retrieved at a later time.")
(license (package-license perl))))
(define-public perl-stream-buffered (define-public perl-stream-buffered
(package (package
(name "perl-stream-buffered") (name "perl-stream-buffered")