guix-commits
[Top][All Lists]
Advanced

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

46/82: gnu: Add Bit-Vector.


From: Eric Bavier
Subject: 46/82: gnu: Add Bit-Vector.
Date: Mon, 20 Apr 2015 01:02:41 +0000

bavier pushed a commit to branch master
in repository guix.

commit bb90ae0cb043b45152d5f92628eef944f854cd7a
Author: Eric Bavier <address@hidden>
Date:   Mon Apr 6 23:16:23 2015 -0500

    gnu: Add Bit-Vector.
    
    * gnu/packages/perl.scm (perl-bit-vector): New variable.
---
 gnu/packages/perl.scm |   25 +++++++++++++++++++++++++
 1 files changed, 25 insertions(+), 0 deletions(-)

diff --git a/gnu/packages/perl.scm b/gnu/packages/perl.scm
index 10c292c..56cb2d9 100644
--- a/gnu/packages/perl.scm
+++ b/gnu/packages/perl.scm
@@ -254,6 +254,31 @@ but don't want to go all out and profile your code.")
                               "Benchmark-Timer-" version))
     (license gpl2)))
 
+(define-public perl-bit-vector
+  (package
+    (name "perl-bit-vector")
+    (version "7.4")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (string-append "mirror://cpan/authors/id/S/ST/STBEY/"
+                           "Bit-Vector-" version ".tar.gz"))
+       (sha256
+        (base32
+         "09m96p8c0ipgz42li2ywdgy0vxb57mb5nf59j9gw7yzc3xkslv9w"))))
+    (build-system perl-build-system)
+    (propagated-inputs
+     `(("perl-carp-clan" ,perl-carp-clan)))
+    (home-page "http://search.cpan.org/dist/Bit-Vector";)
+    (synopsis "Bit vector library")
+    (description "Bit::Vector is an efficient C library which allows you to
+handle bit vectors, sets (of integers), \"big integer arithmetic\" and boolean
+matrices, all of arbitrary sizes.  The package also includes an
+object-oriented Perl module for accessing the C library from Perl, and
+optionally features overloaded operators for maximum ease of use.  The C
+library can nevertheless be used stand-alone, without Perl.")
+    (license (list (package-license perl) lgpl2.0+))))
+
 (define-public perl-boolean
   (package
     (name "perl-boolean")



reply via email to

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