diff options
author | Eric Bavier <bavier@member.fsf.org> | 2015-04-03 14:47:37 -0500 |
---|---|---|
committer | Eric Bavier <bavier@member.fsf.org> | 2015-04-04 00:46:04 -0500 |
commit | 54268c43c9a6ed05dee75cf66e295268bd9d1fc0 (patch) | |
tree | e31250aaf71d83fd57a6b22fb7c4e6b112825d21 /gnu/packages | |
parent | 83261658fb5c4b8f5f67d0f157ad3549654f4019 (diff) | |
download | guix-54268c43c9a6ed05dee75cf66e295268bd9d1fc0.tar.gz guix-54268c43c9a6ed05dee75cf66e295268bd9d1fc0.zip |
gnu: Add Spiffy.
* gnu/packages/perl.scm (perl-spiffy): New variable.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/perl.scm | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/gnu/packages/perl.scm b/gnu/packages/perl.scm index 8aee516592..35481f86a3 100644 --- a/gnu/packages/perl.scm +++ b/gnu/packages/perl.scm @@ -3277,6 +3277,29 @@ of execution is aborted prematurely. This effectively allows lexically-scoped collector.") (license (package-license perl)))) +(define-public perl-spiffy + (package + (name "perl-spiffy") + (version "0.46") + (source + (origin + (method url-fetch) + (uri (string-append "mirror://cpan/authors/id/I/IN/INGY/" + "Spiffy-" version ".tar.gz")) + (sha256 + (base32 + "18qxshrjh0ibpzjm2314157mxlibh3smyg64nr4mq990hh564n4g")))) + (build-system perl-build-system) + (home-page "http://search.cpan.org/dist/Spiffy") + (synopsis "Spiffy Perl Interface Framework For You") + (description "Spiffy is a framework and methodology for doing object +oriented (OO) programming in Perl. Spiffy combines the best parts of +Exporter.pm, base.pm, mixin.pm and SUPER.pm into one magic foundation class. +It attempts to fix all the nits and warts of traditional Perl OO, in a clean, +straightforward and (perhaps someday) standard way. Spiffy borrows ideas from +other OO languages like Python, Ruby, Java and Perl 6.") + (license (package-license perl)))) + (define-public perl-stream-buffered (package (name "perl-stream-buffered") |