mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-23 19:19:20 -05:00
gnu: Add Test::Simple.
* gnu/packages/perl.scm (perl-test-simple): New variable. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
parent
0ad3969fcd
commit
7576cbd6da
1 changed files with 19 additions and 0 deletions
|
@ -325,6 +325,25 @@ (define-public perl-test-script
|
|||
"Test-Script-" version))
|
||||
(license (package-license perl))))
|
||||
|
||||
(define-public perl-test-simple
|
||||
(package
|
||||
(name "perl-test-simple")
|
||||
(version "1.001009")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (string-append "mirror://cpan/authors/id/E/EX/EXODIST/"
|
||||
"Test-Simple-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32
|
||||
"1klxpy658aj1pmrw63j1hc16gilwh5rzhp9rb2d1iydi3hcm8xb5"))))
|
||||
(build-system perl-build-system)
|
||||
(synopsis "Basic utilities for writing tests")
|
||||
(description
|
||||
"Test::Simple contains basic utilities for writing tests.")
|
||||
(home-page (string-append "http://search.cpan.org/~exodist/"
|
||||
"Test-Simple-" version))
|
||||
(license (package-license perl))))
|
||||
|
||||
(define-public perl-test-tester
|
||||
(package
|
||||
(name "perl-test-tester")
|
||||
|
|
Loading…
Reference in a new issue