mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 22:08:16 -05:00
gnu: Add Perl Readonly.
* gnu/packages/perl.scm (perl-readonly): New variable.
This commit is contained in:
parent
38e62c81ee
commit
8ce2312875
1 changed files with 21 additions and 0 deletions
|
@ -3891,6 +3891,27 @@ (define-public perl-probe-perl
|
||||||
"Probe-Perl-" version))
|
"Probe-Perl-" version))
|
||||||
(license (package-license perl))))
|
(license (package-license perl))))
|
||||||
|
|
||||||
|
(define-public perl-readonly
|
||||||
|
(package
|
||||||
|
(name "perl-readonly")
|
||||||
|
(version "2.00")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (string-append "mirror://cpan/authors/id/S/SA/SANKO/"
|
||||||
|
"Readonly-" version ".tar.gz"))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"165zcf9lpijdpkx82za0g9rx8ckjnhipmcivdkyzshl8jmp1bl4v"))))
|
||||||
|
(build-system perl-build-system)
|
||||||
|
(home-page "http://search.cpan.org/dist/Readonly")
|
||||||
|
(synopsis "Create read-only scalars, arrays, hashes")
|
||||||
|
(description "This module provides a facility for creating non-modifiable
|
||||||
|
variables in Perl. This is useful for configuration files, headers, etc. It
|
||||||
|
can also be useful as a development and debugging tool for catching updates to
|
||||||
|
variables that should not be changed.")
|
||||||
|
(license (package-license perl))))
|
||||||
|
|
||||||
(define-public perl-regexp-common
|
(define-public perl-regexp-common
|
||||||
(package
|
(package
|
||||||
(name "perl-regexp-common")
|
(name "perl-regexp-common")
|
||||||
|
|
Loading…
Reference in a new issue