gnu: Add perl-module-refresh.

* gnu/packages/perl.scm (perl-module-refresh): New variable.

Change-Id: I1f96c9bd6658b4d7745192559d9d0c57a16bf1fc
Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
This commit is contained in:
Wilko Meyer 2023-12-18 18:03:11 +01:00 committed by Nicolas Goaziou
parent 04f75dc16d
commit 2cd17998b9
No known key found for this signature in database
GPG key ID: DA00B4F048E92F2D

View file

@ -13553,6 +13553,25 @@ through subclassing in a much more straightforward way than with
system---most of the @code{Module::Build} code is pure-Perl.")
(license (package-license perl))))
(define-public perl-module-refresh
(package
(name "perl-module-refresh")
(version "0.18")
(source
(origin
(method url-fetch)
(uri (string-append "mirror://cpan/authors/id/B/BP/BPS/Module-Refresh-"
version ".tar.gz"))
(sha256
(base32 "0ngg1ndi11jl0xhn11y8bk5w38l5yqrjgcz2m64n9pxg16lxm570"))))
(build-system perl-build-system)
(native-inputs (list perl-path-class perl-module-install))
(home-page "https://metacpan.org/release/Module-Refresh")
(synopsis "Refresh %INC files when updated on disk")
(description "@{Module::Refresh} provides ways to refresh %INC files
when updated on disk.")
(license license:perl-license)))
(define-public perl-parse-cpan-meta
(package
(name "perl-parse-cpan-meta")