diff --git a/gnu/packages/perl.scm b/gnu/packages/perl.scm index ecda80a8d8..15b7d9a50c 100644 --- a/gnu/packages/perl.scm +++ b/gnu/packages/perl.scm @@ -5462,6 +5462,27 @@ (define-public perl-universal-can UNIVERSAL::can() as a function, which it is not.") (license (package-license perl)))) +(define-public perl-universal-isa + (package + (name "perl-universal-isa") + (version "1.20140927") + (source + (origin + (method url-fetch) + (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/" + "UNIVERSAL-isa-" version ".tar.gz")) + (sha256 + (base32 + "0ryqk58nkzhdq26si7mh49h8wand1wlmyf4m78qgiyn8ib6989bb")))) + (build-system perl-build-system) + (native-inputs + `(("perl-module-build-tiny" ,perl-module-build-tiny))) + (home-page "http://search.cpan.org/dist/UNIVERSAL-isa") + (synopsis "UNIVERSAL::isa() reimplementation") + (description "This module attempts to recover from people calling +UNIVERSAL::isa as a function") + (license (package-license perl)))) + (define-public perl-variable-magic (package (name "perl-variable-magic")