mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-08 07:56:16 -05:00
gnu: Add base.
* gnu/packages/perl.scm (perl-base): New variable.
This commit is contained in:
parent
84c2c6d633
commit
f902e4bcc2
1 changed files with 21 additions and 0 deletions
|
@ -123,6 +123,27 @@ (define-public perl-archive-zip
|
|||
(home-page "http://search.cpan.org/~phred/Archive-Zip-1.37/lib/Archive/Zip.pm")
|
||||
(license (package-license perl))))
|
||||
|
||||
(define-public perl-base
|
||||
(package
|
||||
(name "perl-base")
|
||||
(version "2.18")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (string-append "mirror://cpan/authors/id/R/RG/RGARCIA/"
|
||||
"base-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32
|
||||
"01n3l5ifmn2wd0aadpnzya27b75imibj9zdivkfzcpnviqgx5c2m"))))
|
||||
(build-system perl-build-system)
|
||||
(home-page "http://search.cpan.org/dist/base")
|
||||
(synopsis "Establish an ISA relationship with base classes at compile time")
|
||||
(description "Allows you to both load one or more modules, while setting
|
||||
up inheritance from those modules at the same time. Unless you are using the
|
||||
fields pragma, consider this module discouraged in favor of the lighter-weight
|
||||
parent.")
|
||||
(license (package-license perl)))) ;See README
|
||||
|
||||
(define-public perl-b-hooks-endofscope
|
||||
(package
|
||||
(name "perl-b-hooks-endofscope")
|
||||
|
|
Loading…
Reference in a new issue