gnu: Add Number-Compare.

* gnu/packages/perl.scm (perl-number-compare): New variable.
master
Eric Bavier 2015-03-05 15:56:41 -06:00
parent cab88488e9
commit f57c768639
1 changed files with 19 additions and 0 deletions

View File

@ -485,6 +485,25 @@ cycle. Functions called in the package itself will still be bound by their
name, but they won't show up as methods on your class or instances.") name, but they won't show up as methods on your class or instances.")
(license (package-license perl)))) (license (package-license perl))))
(define-public perl-number-compare
(package
(name "perl-number-compare")
(version "0.03")
(source
(origin
(method url-fetch)
(uri (string-append "mirror://cpan/authors/id/R/RC/RCLAMP/"
"Number-Compare-" version ".tar.gz"))
(sha256
(base32
"09q8i0mxvr7q9vajwlgawsi0hlpc119gnhq4hc933d03x0vkfac3"))))
(build-system perl-build-system)
(home-page "http://search.cpan.org/dist/Number-Compare")
(synopsis "Numeric comparisons")
(description "Number::Compare compiles a simple comparison to an anonymous
subroutine, which you can call with a value to be tested against.")
(license (package-license perl))))
(define-public perl-package-anon (define-public perl-package-anon
(package (package
(name "perl-package-anon") (name "perl-package-anon")