From adf32947553d68780c2eeb40802903338be6c987 Mon Sep 17 00:00:00 2001 From: humanitiesNerd Date: Mon, 20 Mar 2017 09:41:03 +0100 Subject: [PATCH 1/2] gnu: Add perl-crypt-rc4 * gnu/pakages/perl.scm (perl-crypt-rc4): New variable. --- gnu/packages/perl.scm | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/gnu/packages/perl.scm b/gnu/packages/perl.scm index 840e0b763..04b9fa286 100644 --- a/gnu/packages/perl.scm +++ b/gnu/packages/perl.scm @@ -14,6 +14,7 @@ ;;; Copyright © 2016 Jan Nieuwenhuizen ;;; Copyright © 2017 Raoul J.P. Bonnal ;;; Copyright © 2017 Marius Bakke +;;; Copyright © 2017 humanitiesNerd ;;; ;;; This file is part of GNU Guix. ;;; @@ -1369,6 +1370,26 @@ contained in Appendix A of FIPS Publication 181, \"Standard for Automated Password Generator\".") (license (package-license perl)))) +(define-public perl-crypt-rc4 + (package + (name "perl-crypt-rc4") + (version "2.02") + (source + (origin + (method url-fetch) + (uri (string-append + "mirror://cpan/authors/id/S/SI/SIFUKURT/Crypt-RC4-" + version + ".tar.gz")) + (sha256 + (base32 + "1sp099cws0q225h6j4y68hmfd1lnv5877gihjs40f8n2ddf45i2y")))) + (build-system perl-build-system) + (home-page "http://search.cpan.org/dist/Crypt-RC4") + (synopsis "Perl implementation of the RC4 encryption algorithm") + (description "A pure Perl implementation of the RC4 algorithm.") + (license (package-license perl)))) + (define-public perl-cwd-guard (package (name "perl-cwd-guard") -- 2.12.0 From 224267f47ddd3adc663608e9eb3b9051727e45d0 Mon Sep 17 00:00:00 2001 From: humanitiesNerd Date: Mon, 20 Mar 2017 21:10:58 +0100 Subject: [PATCH 2/2] gnu: Add perl-ole-storage-lite. * gnu/packages/perl.scm (perl-ole-storage-lite): New variable. --- gnu/packages/perl.scm | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/gnu/packages/perl.scm b/gnu/packages/perl.scm index 04b9fa286..6d78b9c1a 100644 --- a/gnu/packages/perl.scm +++ b/gnu/packages/perl.scm @@ -5178,6 +5178,29 @@ inherit from in order to allow your objects to generate unique cryptographic signatures.") (license (package-license perl)))) +(define-public perl-ole-storage-lite + (package + (name "perl-ole-storage-lite") + (version "0.19") + (source + (origin + (method url-fetch) + (uri (string-append + "mirror://cpan/authors/id/J/JM/JMCNAMARA/OLE-Storage_Lite-" + version + ".tar.gz")) + (sha256 + (base32 + "179cxwqxb0f9dpx8954nvwjmggxxi5ndnang41yav1dx6mf0abp7")))) + (build-system perl-build-system) + (home-page "http://search.cpan.org/dist/OLE-Storage_Lite") + (synopsis "Read and write OLE storage files") + (description "This module allows you to read and write +an OLE-Structured file. OLE is a proprietary technology to store +hierarchical information within a single file. +See @url{https://en.wikipedia.org/wiki/COM_Structured_Storage, Wikipedia} about it.") + (license (package-license perl)))) + (define-public perl-package-anon (package (name "perl-package-anon") -- 2.12.0