mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 23:46:13 -05:00
gnu: Add perl-data-sexpression.
* gnu/packages/perl.scm (perl-data-sexpression): New variable.
This commit is contained in:
parent
73b2ce8795
commit
cbffb56cd4
1 changed files with 26 additions and 1 deletions
|
@ -19,7 +19,7 @@
|
|||
;;; Copyright © 2017 Leo Famulari <leo@famulari.name>
|
||||
;;; Copyright © 2017 Christopher Allan Webber <cwebber@dustycloud.org>
|
||||
;;; Copyright © 2018 Oleg Pykhalov <go.wigust@gmail.com>
|
||||
;;; Copyright © 2018 Pierre Neidhardt <mail@ambrevar.xyz>
|
||||
;;; Copyright © 2018, 2019 Pierre Neidhardt <mail@ambrevar.xyz>
|
||||
;;; Copyright © 2018 Kei Kebreau <kkebreau@posteo.net>
|
||||
;;;
|
||||
;;; This file is part of GNU Guix.
|
||||
|
@ -9721,3 +9721,28 @@ (define-public perl-regexp-pattern
|
|||
(description "Regexp::Pattern is a convention for organizing reusable
|
||||
regexp patterns in modules.")
|
||||
(license (package-license perl))))
|
||||
|
||||
(define-public perl-data-sexpression
|
||||
(package
|
||||
(name "perl-data-sexpression")
|
||||
(version "0.41")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (string-append
|
||||
"mirror://cpan/authors/id/N/NE/NELHAGE/Data-SExpression-"
|
||||
version ".tar.gz"))
|
||||
(sha256
|
||||
(base32
|
||||
"16qls1yqcmhxrcx9agsmaypxa1nirq4nvbyzbww9984589m44ql1"))))
|
||||
(build-system perl-build-system)
|
||||
(native-inputs
|
||||
`(("perl-module-install" ,perl-module-install)
|
||||
("perl-test-deep" ,perl-test-deep)))
|
||||
(propagated-inputs
|
||||
`(("perl-class-accessor" ,perl-class-accessor)))
|
||||
(home-page "https://metacpan.org/release/Data-SExpression")
|
||||
(synopsis "Parse Lisp S-Expressions into Perl data structures")
|
||||
(description "Data::SExpression parses Lisp S-Expressions into Perl data
|
||||
structures.")
|
||||
(license perl-license)))
|
||||
|
|
Loading…
Reference in a new issue