gnu: Add perl-file-sharedir-dist.
* gnu/packages/perl.scm (perl-file-sharedir-dist): New variable.
This commit is contained in:
parent
9dab50179a
commit
13d73c42f9
|
@ -16,6 +16,7 @@
|
|||
;;; Copyright © 2017 Marius Bakke <mbakke@fastmail.com>
|
||||
;;; Copyright © 2017 Adriano Peluso <catonano@gmail.com>
|
||||
;;; Copyright © 2017 Tobias Geerinckx-Rice <me@tobias.gr>
|
||||
;;; Copyright © 2017 Leo Famulari <leo@famulari.name>
|
||||
;;;
|
||||
;;; This file is part of GNU Guix.
|
||||
;;;
|
||||
|
@ -3119,6 +3120,25 @@ correct directory, you can use File::ShareDir to find your files again after
|
|||
the installation.")
|
||||
(license (package-license perl))))
|
||||
|
||||
(define-public perl-file-sharedir-dist
|
||||
(package
|
||||
(name "perl-file-sharedir-dist")
|
||||
(version "0.04")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (string-append "mirror://cpan/authors/id/P/PL/PLICEASE/"
|
||||
"File-ShareDir-Dist-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32
|
||||
"028vnjw3fdmwk540w3b07cmr93ap0s13ni2b4c7iv56mgyy6gfc1"))))
|
||||
(build-system perl-build-system)
|
||||
(home-page "http://search.cpan.org/dist/File-ShareDir-Dist")
|
||||
(synopsis "Locate per-dist shared files")
|
||||
(description "File::ShareDir::Dist finds share directories for
|
||||
distributions. It is a companion module to File::ShareDir.")
|
||||
(license (package-license perl))))
|
||||
|
||||
(define-public perl-file-sharedir-install
|
||||
(package
|
||||
(name "perl-file-sharedir-install")
|
||||
|
|
Loading…
Reference in New Issue