mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 13:28:12 -05:00
gnu: Add perl-test-perltidy.
* gnu/packages/perl-check.scm (perl-test-perltidy): New variable.
This commit is contained in:
parent
32315df9c7
commit
0943b0b534
1 changed files with 26 additions and 0 deletions
|
@ -1165,6 +1165,32 @@ (define-public perl-test-tester
|
|||
;; "Under the same license as Perl itself"
|
||||
(license perl-license)))
|
||||
|
||||
(define-public perl-test-perltidy
|
||||
(package
|
||||
(name "perl-test-perltidy")
|
||||
(version "20130104")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (string-append
|
||||
"mirror://cpan/authors/id/L/LA/LARRYL/Test-PerlTidy-"
|
||||
version ".tar.gz"))
|
||||
(sha256
|
||||
(base32
|
||||
"1j5rsb4km9rzcbd1ljavj8vm42bmilji40v2jj2k87l1ykrxj59z"))))
|
||||
(build-system perl-build-system)
|
||||
(propagated-inputs
|
||||
`(("perl-file-finder" ,perl-file-finder)
|
||||
("perl-file-slurp" ,perl-file-slurp)
|
||||
("perltidy" ,perltidy)
|
||||
("perl-text-diff" ,perl-text-diff)))
|
||||
(home-page "http://search.cpan.org/dist/Test-PerlTidy/")
|
||||
(synopsis "Check that all your Perl files are tidy")
|
||||
(description
|
||||
"Using @code{Test::PerlTidy}, any file ending in .pl, .pm, .t or .PL will
|
||||
cause a test fail unless it is exactly as @code{perltidy} would like it to be.")
|
||||
(license perl-license)))
|
||||
|
||||
(define-public perl-test-trap
|
||||
(package
|
||||
(name "perl-test-trap")
|
||||
|
|
Loading…
Reference in a new issue