mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 21:38:07 -05:00
gnu: Add JSON-XS.
* gnu/packages/perl.scm (perl-json-xs): New variable.
This commit is contained in:
parent
2362b3e0d9
commit
1699b2d969
1 changed files with 22 additions and 0 deletions
|
@ -1874,6 +1874,28 @@ (define-public perl-ipc-sharelite
|
|||
allowing data to be efficiently communicated between processes.")
|
||||
(license (package-license perl))))
|
||||
|
||||
(define-public perl-json-xs
|
||||
(package
|
||||
(name "perl-json-xs")
|
||||
(version "3.01")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (string-append "mirror://cpan/authors/id/M/ML/MLEHMANN/"
|
||||
"JSON-XS-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32
|
||||
"1aviik480m61ykwvyix83grywzbk828wvfz19hqfvaasd8jz73af"))))
|
||||
(build-system perl-build-system)
|
||||
(propagated-inputs
|
||||
`(("perl-common-sense" ,perl-common-sense)
|
||||
("perl-types-serialiser" ,perl-types-serialiser)))
|
||||
(home-page "http://search.cpan.org/dist/JSON-XS")
|
||||
(synopsis "JSON serialising/deserialising for Perl")
|
||||
(description "This module converts Perl data structures to JSON and vice
|
||||
versa.")
|
||||
(license (package-license perl))))
|
||||
|
||||
(define-public perl-list-moreutils
|
||||
(package
|
||||
(name "perl-list-moreutils")
|
||||
|
|
Loading…
Reference in a new issue