guix-commits
[Top][All Lists]
Advanced

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

01/21: gnu: Add Class-XSAccessor.


From: Eric Bavier
Subject: 01/21: gnu: Add Class-XSAccessor.
Date: Fri, 13 Mar 2015 18:51:52 +0000

bavier pushed a commit to branch master
in repository guix.

commit 448ebad1f6f5a6714b02daee679629a4ec8af86c
Author: Eric Bavier <address@hidden>
Date:   Fri Mar 13 08:18:36 2015 -0500

    gnu: Add Class-XSAccessor.
    
    * gnu/packages/perl.scm (perl-class-xsaccessor): New variable.
---
 gnu/packages/perl.scm |   23 +++++++++++++++++++++++
 1 files changed, 23 insertions(+), 0 deletions(-)

diff --git a/gnu/packages/perl.scm b/gnu/packages/perl.scm
index 7292da2..b8ddd42 100644
--- a/gnu/packages/perl.scm
+++ b/gnu/packages/perl.scm
@@ -439,6 +439,29 @@ Class::Load")
 uses no non-core modules for any recent Perl.")
     (license asl2.0)))
 
+(define-public perl-class-xsaccessor
+  (package
+    (name "perl-class-xsaccessor")
+    (version "1.19")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (string-append "mirror://cpan/authors/id/S/SM/SMUELLER/"
+                           "Class-XSAccessor-" version ".tar.gz"))
+       (sha256
+        (base32
+         "1wm6013il899jnm0vn50a7iv9v6r4nqywbqzj0csyf8jbwwnpicr"))))
+    (build-system perl-build-system)
+    (home-page "http://search.cpan.org/dist/Class-XSAccessor";)
+    (synopsis "Generate fast XS accessors without runtime compilation")
+    (description "Class::XSAccessor implements fast read, write, and
+read/write accessors in XS.  Additionally, it can provide predicates such as
+\"has_foo()\" for testing whether the attribute \"foo\" is defined in the
+object.  It only works with objects that are implemented as ordinary hashes.
+Class::XSAccessor::Array implements the same interface for objects that use
+arrays for their internal representation.")
+    (license (package-license perl))))
+
 (define-public perl-clone
   (package
     (name "perl-clone")



reply via email to

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