mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 21:38:07 -05:00
gnu: Add perl6-json-marshal.
* gnu/packages/perl6.scm (perl6-json-marshal): New variable.
This commit is contained in:
parent
56eea22137
commit
e1b3cf6891
1 changed files with 27 additions and 0 deletions
|
@ -252,6 +252,33 @@ (define-public perl6-json-fast
|
|||
but it offers a few extra features.")
|
||||
(license license:artistic2.0)))
|
||||
|
||||
(define-public perl6-json-marshal
|
||||
(package
|
||||
(name "perl6-json-marshal")
|
||||
(version "0.0.16")
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/jonathanstowe/JSON-Marshal.git")
|
||||
(commit (string-append "v" version))))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32
|
||||
"0qy7j83h6gjzyyv74ncd92cd9h45rv8diaz3vldiv3b6fqwz4c6i"))))
|
||||
(build-system rakudo-build-system)
|
||||
(propagated-inputs
|
||||
`(("perl6-json-fast" ,perl6-json-fast)
|
||||
("perl6-json-name" ,perl6-json-name)))
|
||||
(native-inputs
|
||||
`(("perl6-json-fast" ,perl6-json-fast)))
|
||||
(home-page "https://github.com/jonathanstowe/JSON-Marshal")
|
||||
(synopsis "Simple serialisation of objects to JSON")
|
||||
(description "This library provides a single exported subroutine to create
|
||||
a JSON representation of an object. It should round trip back into an object
|
||||
of the same class using @code{JSON::Unmarshal}.")
|
||||
(license license:artistic2.0)))
|
||||
|
||||
(define-public perl6-json-name
|
||||
(package
|
||||
(name "perl6-json-name")
|
||||
|
|
Loading…
Reference in a new issue