gnu: Add ruby-jekyll-sitemap.

* gnu/packages/ruby.scm (ruby-jekyll-sitemap): New variable.

Signed-off-by: Björn Höfling <bjoern.hoefling@bjoernhoefling.de>
This commit is contained in:
Giacomo Leidi 2021-01-04 02:00:13 +01:00 committed by Björn Höfling
parent d4baac70b8
commit f815e88ed0
No known key found for this signature in database
GPG key ID: BF286CB6593E5FFD

View file

@ -12308,3 +12308,28 @@ (define-public ruby-jekyll-feed
(home-page
"https://github.com/jekyll/jekyll-feed")
(license license:expat)))
(define-public ruby-jekyll-sitemap
(package
(name "ruby-jekyll-sitemap")
(version "1.4.0")
(source
(origin
(method url-fetch)
(uri (rubygems-uri "jekyll-sitemap" version))
(sha256
(base32
"0622rwsn5i0m5xcyzdn86l68wgydqwji03lqixdfm1f1xdfqrq0d"))))
(build-system ruby-build-system)
(arguments
`(#:tests? #false)) ;there are none
(propagated-inputs
`(("jekyll" ,jekyll)))
(synopsis
"Automatically generate a sitemap.xml for your Jekyll site")
(description
"This package provides a Jekyll plugin to silently generate
a sitemaps.org compliant sitemap for your Jekyll site.")
(home-page
"https://github.com/jekyll/jekyll-sitemap")
(license license:expat)))