[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#28028] [PATCH 4/9] gnu: Add perl-type-tie.
From: |
Ricardo Wurmus |
Subject: |
[bug#28028] [PATCH 4/9] gnu: Add perl-type-tie. |
Date: |
Wed, 9 Aug 2017 19:00:32 +0200 |
* gnu/packages/perl.scm (perl-type-tie): New variable.
---
gnu/packages/perl.scm | 28 ++++++++++++++++++++++++++++
1 file changed, 28 insertions(+)
diff --git a/gnu/packages/perl.scm b/gnu/packages/perl.scm
index f94ffc1a6..d9fc3937d 100644
--- a/gnu/packages/perl.scm
+++ b/gnu/packages/perl.scm
@@ -7783,6 +7783,34 @@ that are designed to minimize common mistakes with eval
blocks, and nothing
else.")
(license x11)))
+(define-public perl-type-tie
+ (package
+ (name "perl-type-tie")
+ (version "0.009")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append "mirror://cpan/authors/id/T/TO/TOBYINK/"
+ "Type-Tie-" version ".tar.gz"))
+ (sha256
+ (base32
+ "1wv32kd7gx4kfyvzs13y029f49qbbji991wawvarac7rlz09wpan"))))
+ (build-system perl-build-system)
+ (native-inputs
+ `(("perl-test-fatal" ,perl-test-fatal)
+ ("perl-test-requires" ,perl-test-requires)))
+ (propagated-inputs
+ `(("perl-exporter-tiny" ,perl-exporter-tiny)
+ ("perl-hash-fieldhash" ,perl-hash-fieldhash)))
+ (home-page "http://search.cpan.org/dist/Type-Tie")
+ (synopsis "Tie a variable to a type constraint")
+ (description "This module exports a single function: @code{ttie}. It ties
+a variable to a type constraint, ensuring that whatever values stored in the
+variable will conform to the type constraint. If the type constraint has
+coercions, these will be used if necessary to ensure values assigned to the
+variable conform.")
+ (license (package-license perl))))
+
(define-public perl-types-serialiser
(package
(name "perl-types-serialiser")
--
2.13.2
- [bug#28028] [PATCH 0/9] Perl crypto things, Ricardo Wurmus, 2017/08/09
- [bug#28028] [PATCH 1/9] gnu: Add perl-hash-fieldhash., Ricardo Wurmus, 2017/08/09
- [bug#28028] [PATCH 4/9] gnu: Add perl-type-tie.,
Ricardo Wurmus <=
- [bug#28028] [PATCH 5/9] gnu: Add perl-regexp-util., Ricardo Wurmus, 2017/08/09
- [bug#28028] [PATCH 6/9] gnu: Add perl-ref-util-xs., Ricardo Wurmus, 2017/08/09
- [bug#28028] [PATCH 8/9] gnu: Add perl-crypt-random-source., Ricardo Wurmus, 2017/08/09
- [bug#28028] [PATCH 7/9] gnu: Add perl-type-tiny., Ricardo Wurmus, 2017/08/09
- [bug#28028] [PATCH 9/9] gnu: Add perl-math-random-secure., Ricardo Wurmus, 2017/08/09