From mboxrd@z Thu Jan 1 00:00:00 1970 From: Danny Milosavljevic Subject: [PATCH v5 13/17] gnu: Add perl-crypt-openssl-rsa. Date: Thu, 28 Jul 2016 23:38:29 +0200 Message-ID: <20160728213833.22057-14-dannym@scratchpost.org> References: <20160728213833.22057-1-dannym@scratchpost.org> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="------------2.9.1" Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:35419) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bSt1g-0007oY-JQ for guix-devel@gnu.org; Thu, 28 Jul 2016 17:39:33 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bSt1e-0006Cg-9F for guix-devel@gnu.org; Thu, 28 Jul 2016 17:39:31 -0400 Received: from dd1012.kasserver.com ([85.13.128.8]:55096) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bSt1e-0006CA-3R for guix-devel@gnu.org; Thu, 28 Jul 2016 17:39:30 -0400 In-Reply-To: <20160728213833.22057-1-dannym@scratchpost.org> List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: "Guix-devel" To: guix-devel@gnu.org This is a multi-part message in MIME format. --------------2.9.1 Content-Type: text/plain; charset=UTF-8; format=fixed Content-Transfer-Encoding: quoted-printable gnu: Add perl-crypt-openssl-rsa. * gnu/packages/tls.scm (perl-crypt-openssl-rsa): Add variable. --- gnu/packages/tls.scm | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) --------------2.9.1 Content-Type: text/x-patch; name="0013-gnu-Add-perl-crypt-openssl-rsa.patch" Content-Disposition: attachment; filename="0013-gnu-Add-perl-crypt-openssl-rsa.patch" Content-Transfer-Encoding: quoted-printable diff --git a/gnu/packages/tls.scm b/gnu/packages/tls.scm index bdc1d7c..d992c51 100644 --- a/gnu/packages/tls.scm +++ b/gnu/packages/tls.scm @@ -527,3 +527,32 @@ finally access to the SSL api of the SSLeay/OpenSSL = package so you can write servers or clients for more complicated applications.") (license (package-license perl)) (home-page "http://search.cpan.org/~mikem/Net-SSLeay-1.66/"))) + +(define-public perl-crypt-openssl-rsa + (package + (name "perl-crypt-openssl-rsa") + (version "0.28") + (source + (origin + (method url-fetch) + (uri (string-append + "mirror://cpan/authors/id/P/PE/PERLER/Crypt-OpenSSL-RSA-" + version + ".tar.gz")) + (sha256 + (base32 + "1gnpvv09b2gpifwdzc5jnhama3d1a4c39lzj9hcaicsb8rvzjmsk")))) + (build-system perl-build-system) + (inputs + `(("perl-crypt-openssl-bignum" + ,perl-crypt-openssl-bignum) + ("perl-crypt-openssl-random" + ,perl-crypt-openssl-random) + ("openssl" ,openssl))) + (arguments perl-crypt-arguments) + (home-page + "http://search.cpan.org/dist/Crypt-OpenSSL-RSA") + (synopsis + "RSA encoding and decoding, using the openSSL libraries") + (description "Crypt::OpenSSL::RSA does RSA encoding and decoding (usin= g the OpenSSL libraries).") + (license (package-license perl)))) --------------2.9.1--