mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 13:58:15 -05:00
gnu: Add Types-Serialiser.
* gnu/packages/perl.scm (perl-types-serialiser): New variable.
This commit is contained in:
parent
4a402425e4
commit
2362b3e0d9
1 changed files with 21 additions and 0 deletions
|
@ -4073,6 +4073,27 @@ (define-public perl-try-tiny
|
|||
else.")
|
||||
(license x11)))
|
||||
|
||||
(define-public perl-types-serialiser
|
||||
(package
|
||||
(name "perl-types-serialiser")
|
||||
(version "1.0")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (string-append "mirror://cpan/authors/id/M/ML/MLEHMANN/"
|
||||
"Types-Serialiser-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32
|
||||
"03bk0hm5ys8k7265dkap825ybn2zmzb1hl0kf1jdm8yq95w39lvs"))))
|
||||
(build-system perl-build-system)
|
||||
(propagated-inputs
|
||||
`(("perl-common-sense" ,perl-common-sense)))
|
||||
(home-page "http://search.cpan.org/dist/Types-Serialiser")
|
||||
(synopsis "Data types for common serialisation formats")
|
||||
(description "This module provides some extra datatypes that are used by
|
||||
common serialisation formats such as JSON or CBOR.")
|
||||
(license (package-license perl))))
|
||||
|
||||
(define-public perl-variable-magic
|
||||
(package
|
||||
(name "perl-variable-magic")
|
||||
|
|
Loading…
Reference in a new issue