mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 23:46:13 -05:00
gnu: Add Test-SharedFork.
* gnu/packages/perl.scm (perl-test-sharedfork): New variable.
This commit is contained in:
parent
83e825a16e
commit
786ccb71cc
1 changed files with 21 additions and 0 deletions
|
@ -2107,6 +2107,27 @@ (define-public perl-test-script
|
|||
"Test-Script-" version))
|
||||
(license (package-license perl))))
|
||||
|
||||
(define-public perl-test-sharedfork
|
||||
(package
|
||||
(name "perl-test-sharedfork")
|
||||
(version "0.29")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (string-append "mirror://cpan/authors/id/E/EX/EXODIST/"
|
||||
"Test-SharedFork-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32
|
||||
"0vlak10q4gcf0ch0rfcb9lvddav6r8h15iipzbkbgf9mrj47gbv3"))))
|
||||
(build-system perl-build-system)
|
||||
(native-inputs
|
||||
`(("perl-test-requires" ,perl-test-requires)))
|
||||
(home-page "http://search.cpan.org/dist/Test-SharedFork")
|
||||
(synopsis "Fork test in Perl")
|
||||
(description "Test::SharedFork is a utility module for Test::Builder. It
|
||||
makes fork(2) safe to use in test cases.")
|
||||
(license (package-license perl))))
|
||||
|
||||
(define-public perl-test-simple
|
||||
(package
|
||||
(name "perl-test-simple")
|
||||
|
|
Loading…
Reference in a new issue