mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 05:48:07 -05:00
gnu: Add perl-cwd-guard.
* gnu/packages/perl.scm (perl-cwd-guard): New variable.
This commit is contained in:
parent
c1adb4ebd6
commit
3ce3ecd3d7
1 changed files with 22 additions and 0 deletions
|
@ -1343,6 +1343,28 @@ (define-public perl-crypt-randpasswd
|
|||
Password Generator\".")
|
||||
(license (package-license perl))))
|
||||
|
||||
(define-public perl-cwd-guard
|
||||
(package
|
||||
(name "perl-cwd-guard")
|
||||
(version "0.05")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (string-append "mirror://cpan/authors/id/K/KA/KAZEBURO/"
|
||||
"Cwd-Guard-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32
|
||||
"0xwf4rmii55k3lp19mpbh00mbgby7rxdk2lk84148bjhp6i7rz3s"))))
|
||||
(build-system perl-build-system)
|
||||
(native-inputs
|
||||
`(("perl-module-build" ,perl-module-build)
|
||||
("perl-test-requires" ,perl-test-requires)))
|
||||
(home-page "http://search.cpan.org/dist/Cwd-Guard")
|
||||
(synopsis "Temporarily change working directory")
|
||||
(description
|
||||
"@code{Cwd::Guard} changes the current directory using a limited scope.
|
||||
It returns to the previous working directory when the object is destroyed.")
|
||||
(license (package-license perl))))
|
||||
|
||||
(define-public perl-czplib
|
||||
(package
|
||||
(name "perl-czplib")
|
||||
|
|
Loading…
Reference in a new issue