me
/
guix
Archived
1
0
Fork 0

gnu: Add perl-spreadsheet-xlsx.

* gnu/packages/perl.scm (perl-spreadsheet-xlsx): New variable.

Change-Id: Iec4fc26945bd2f154587d4b13b593fd947bb0e5a
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
master
Steve George 2024-04-26 13:42:06 +02:00 committed by Ludovic Courtès
parent 92641467b4
commit ec9c5a8ff5
No known key found for this signature in database
GPG Key ID: 090B11993D9AEBB5
1 changed files with 20 additions and 0 deletions

View File

@ -9663,6 +9663,26 @@ other OO languages like Python, Ruby, Java and Perl 6.")
Excel95, 97 and 2000 format files.")
(license license:perl-license)))
(define-public perl-spreadsheet-xlsx
(package
(name "perl-spreadsheet-xlsx")
(version "0.17")
(source
(origin
(method url-fetch)
(uri (string-append "mirror://cpan/authors/id/A/AS/ASB/Spreadsheet-XLSX-"
version ".tar.gz"))
(sha256
(base32 "0xp9rqm0j1a6pr2zxk9c1mk720vbd72bhkmpcn8305pzgj97idrk"))))
(build-system perl-build-system)
(native-inputs (list perl-test-nowarnings perl-test-warnings))
(propagated-inputs (list perl-archive-zip perl-spreadsheet-parseexcel))
(home-page "https://metacpan.org/release/Spreadsheet-XLSX")
(synopsis "Perl extension for reading MS Excel 2007 files")
(description "This module implements @code{Spreadsheet::XLSX} parsing
Microsoft Excel 2007 xlsx files.")
(license license:perl-license)))
(define-public perl-want
(package
(name "perl-want")