mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
gnu: Add perl-file-which.
* gnu/packages/perl.scm (perl-file-which): New variable.
This commit is contained in:
parent
2e66590aad
commit
31f3976a21
1 changed files with 22 additions and 0 deletions
|
@ -276,3 +276,25 @@ (define-public perl-test-script
|
|||
(home-page (string-append "http://search.cpan.org/~adamk/"
|
||||
"Test-Script-" version))
|
||||
(license (package-license perl))))
|
||||
|
||||
(define-public perl-file-which
|
||||
(package
|
||||
(name "perl-file-which")
|
||||
(version "1.09")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (string-append "mirror://cpan/authors/id/A/AD/ADAMK/"
|
||||
"File-Which-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32
|
||||
"1hxjyh9yrv32f3g8vrnr8iylzprajsac14vjm75kf1qnj1jyqbxp"))))
|
||||
(build-system perl-build-system)
|
||||
(native-inputs `(("test-script" ,perl-test-script)))
|
||||
(synopsis "Portable implementation of the `which' utility")
|
||||
(description
|
||||
"File::Which was created to be able to get the paths to executable
|
||||
programs on systems under which the `which' program wasn't implemented in the
|
||||
shell.")
|
||||
(home-page (string-append "http://search.cpan.org/~adamk/"
|
||||
"File-Which-" version))
|
||||
(license (package-license perl))))
|
||||
|
|
Loading…
Reference in a new issue