gnu: Add perl-config-gitlike.

* gnu/packages/perl.scm (perl-config-gitlike): New variable.
master
Christopher Baines 2019-03-24 18:03:07 +00:00
parent 41c685f51c
commit ef9902d37e
No known key found for this signature in database
GPG Key ID: 5E28A33B0B84F577
1 changed files with 27 additions and 0 deletions

View File

@ -1435,6 +1435,33 @@ some enhancements such as here-documents, C-style comments, and multiline
options.")
(license (package-license perl))))
(define-public perl-config-gitlike
(package
(name "perl-config-gitlike")
(version "1.17")
(source
(origin
(method url-fetch)
(uri (string-append
"mirror://cpan/authors/id/A/AL/ALEXMV/Config-GitLike-"
version
".tar.gz"))
(sha256
(base32
"0kp57na9mk6yni693h2fwap6l1ndbcj97l4860r9vkzx2jw0fjk7"))))
(build-system perl-build-system)
(native-inputs
`(("perl-test-exception" ,perl-test-exception)))
(propagated-inputs
`(("perl-moo" ,perl-moo)
("perl-moox-types-mooselike" ,perl-moox-types-mooselike)))
(home-page "https://metacpan.org/release/Config-GitLike")
(synopsis "Parse Git style configuration files")
(description
"This module handles parsing, modifying and creating configuration files
of the style used by the Git version control system.")
(license perl-license)))
(define-public perl-config-ini
(package
(name "perl-config-ini")