diff options
author | Eric Bavier <bavier@member.fsf.org> | 2015-03-12 12:59:52 -0500 |
---|---|---|
committer | Eric Bavier <bavier@member.fsf.org> | 2015-03-12 15:55:58 -0500 |
commit | 317c4a1da84cfa0b4f496dee3d843925a075e433 (patch) | |
tree | 3dc04b2380e6562f3038499f4793f4a5ed11776f | |
parent | 64b16bf7927482e853d15548003ccfb86caf973f (diff) |
gnu: Add Safe-Isa.
* gnu/packages/perl.scm (perl-safe-isa): New variable.
-rw-r--r-- | gnu/packages/perl.scm | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/gnu/packages/perl.scm b/gnu/packages/perl.scm index 73a81949bb..2ca1ce8e6c 100644 --- a/gnu/packages/perl.scm +++ b/gnu/packages/perl.scm @@ -2048,6 +2048,25 @@ codes.") ;; Quad-licensed: Perl Artistic, Perl Artistic 2.0, X11, and BSD. (license (list (package-license perl) x11 bsd-3)))) +(define-public perl-safe-isa + (package + (name "perl-safe-isa") + (version "1.000005") + (source + (origin + (method url-fetch) + (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/" + "Safe-Isa-" version ".tar.gz")) + (sha256 + (base32 + "1vib54cp64dy3ic4n73skadp1pl4gn8s9qpxmzvi078dm3mpnbcw")))) + (build-system perl-build-system) + (home-page "http://search.cpan.org/dist/Safe-Isa") + (synopsis "Call isa, can, does, and DOES safely") + (description "This module allows you to call isa, can, does, and DOES +safely on things that may not be objects.") + (license (package-license perl)))) + (define-public perl-stream-buffered (package (name "perl-stream-buffered") |