guix-commits
[Top][All Lists]
Advanced

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

13/16: gnu: Add perl-crypt-openssl-bignum.


From: Leo Famulari
Subject: 13/16: gnu: Add perl-crypt-openssl-bignum.
Date: Tue, 9 Aug 2016 02:37:02 +0000 (UTC)

lfam pushed a commit to branch master
in repository guix.

commit adff71ca5c4b422afd49d340d7eb950ec919b1c4
Author: Danny Milosavljevic <address@hidden>
Date:   Thu Jul 28 23:38:30 2016 +0200

    gnu: Add perl-crypt-openssl-bignum.
    
    * gnu/packages/tls.scm (perl-crypt-openssl-bignum, perl-crypt-arguments): 
New
    variables.
    
    Signed-off-by: Leo Famulari <address@hidden>
---
 gnu/packages/tls.scm |   36 ++++++++++++++++++++++++++++++++++++
 1 file changed, 36 insertions(+)

diff --git a/gnu/packages/tls.scm b/gnu/packages/tls.scm
index a4a3038..efc6b79 100644
--- a/gnu/packages/tls.scm
+++ b/gnu/packages/tls.scm
@@ -558,3 +558,39 @@ servers or clients for more complicated applications.")
   (description "Crypt::OpenSSL::RSA does RSA encoding and decoding (using the
 OpenSSL libraries).")
   (license (package-license perl))))
+
+(define perl-crypt-arguments
+   `(#:phases (modify-phases %standard-phases
+      (add-before 'configure 'patch-Makefile.PL
+        (lambda* (#:key inputs #:allow-other-keys)
+          (substitute* "Makefile.PL"
+            (("'LIBS'.*=>.*") (string-append "'LIBS' => ['-L"
+                                             (assoc-ref inputs "openssl")
+                                             "/lib -lcrypto'],")))
+          #t)))))
+
+(define-public perl-crypt-openssl-bignum
+ (package
+  (name "perl-crypt-openssl-bignum")
+  (version "0.06")
+  (source
+    (origin
+      (method url-fetch)
+      (uri (string-append
+             "mirror://cpan/authors/id/K/KM/KMX/Crypt-OpenSSL-Bignum-"
+             version
+             ".tar.gz"))
+      (sha256
+        (base32
+          "05yzrdglrrzp191krf77zrwfkmzrfwrsrx1vyskbj94522lszk67"))))
+  (build-system perl-build-system)
+  (inputs `(("openssl" ,openssl)))
+  (arguments perl-crypt-arguments)
+  (home-page
+    "http://search.cpan.org/dist/Crypt-OpenSSL-Bignum";)
+  (synopsis
+    "OpenSSL's multiprecision integer arithmetic in Perl")
+  (description "Crypt::OpenSSL::Bignum provides multiprecision integer
+arithmetic in Perl.")
+  ;; At your option either gpl1+ or the Artistic License
+  (license (package-license perl))))



reply via email to

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