guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

10/26: gnu: Add perl6-json-name.


From: guix-commits
Subject: 10/26: gnu: Add perl6-json-name.
Date: Tue, 19 Mar 2019 15:16:49 -0400 (EDT)

efraim pushed a commit to branch wip-perl6
in repository guix.

commit 49446ecc079eb36d536fd0b10ef8cab50172de88
Author: Efraim Flashner <address@hidden>
Date:   Thu Feb 28 10:14:53 2019 +0200

    gnu: Add perl6-json-name.
    
    * gnu/packages/perl6.scm (perl6-json-name): New variable.
---
 gnu/packages/perl6.scm | 26 ++++++++++++++++++++++++++
 1 file changed, 26 insertions(+)

diff --git a/gnu/packages/perl6.scm b/gnu/packages/perl6.scm
index fc09651..c2c1c50 100644
--- a/gnu/packages/perl6.scm
+++ b/gnu/packages/perl6.scm
@@ -252,6 +252,32 @@ It is a drop-in replacement for @code{JSON::Tiny}'s 
from-json and to-json subs,
 but it offers a few extra features.")
     (license license:artistic2.0)))
 
+(define-public perl6-json-name
+  (package
+    (name "perl6-json-name")
+    (version "0.0.3")
+    (source
+      (origin
+        (method git-fetch)
+        (uri (git-reference
+               (url "https://github.com/jonathanstowe/JSON-Name.git";)
+               (commit (string-append "v" version))))
+        (file-name (git-file-name name version))
+        (sha256
+         (base32
+          "130qwdpbj5qdlsdz05y0rksd79lzbq79scy47n6lnf21b0hz1qjc"))))
+    (build-system rakudo-build-system)
+    (arguments '(#:with-zef? #f))
+    (home-page "https://github.com/jonathanstowe/JSON-Name";)
+    (synopsis "Provides a trait to store an alternative JSON Name")
+    (description "This is released as a dependency of @code{JSON::Marshal} and
address@hidden::Unmarshal} in order to save duplication, it is intended to 
store a
+separate JSON name for an attribute where the name of the JSON attribute might 
be
+changed, either for aesthetic reasons or the name is not a valid Perl 
identifier.
+It will of course also be needed in classes thar are going to use
address@hidden::Marshal} or @code{JSON::Unmarshal} for 
serialisation/de-serialisation.")
+    (license license:artistic2.0)))
+
 (define-public perl6-tap-harness
   (package
     (name "perl6-tap-harness")



reply via email to

[Prev in Thread] Current Thread [Next in Thread]