guix-patches
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[bug#45642] [PATCH 3/3] gnu: Add ruby-jekyll-seo-tag.


From: Giacomo Leidi
Subject: [bug#45642] [PATCH 3/3] gnu: Add ruby-jekyll-seo-tag.
Date: Mon, 4 Jan 2021 02:00:14 +0100

* gnu/packages/ruby.scm (ruby-jekyll-seo-tag): New variable.
---
 gnu/packages/ruby.scm | 25 +++++++++++++++++++++++++
 1 file changed, 25 insertions(+)

diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm
index 55867297ec..14c69c4065 100644
--- a/gnu/packages/ruby.scm
+++ b/gnu/packages/ruby.scm
@@ -11808,3 +11808,28 @@ a sitemaps.org compliant sitemap for your Jekyll 
site.")
     (home-page
       "https://github.com/jekyll/jekyll-sitemap";)
     (license license:expat)))
+
+(define-public ruby-jekyll-seo-tag
+  (package
+   (name "ruby-jekyll-seo-tag")
+   (version "2.7.1")
+   (source
+    (origin
+     (method url-fetch)
+     (uri (rubygems-uri "jekyll-seo-tag" version))
+     (sha256
+      (base32
+       "0fsi75hymk2wswy216fs224p5ycrzjw1kshw1bsl5czhv42wr2w3"))))
+   (build-system ruby-build-system)
+   (arguments
+    `(#:tests? #false))
+   (propagated-inputs
+    `(("jekyll" ,jekyll)))
+   (synopsis
+    "Jekyll plugin to add metadata tags for search engines and social 
networks")
+   (description
+    "This package provides a Jekyll plugin to add metadata tags for search 
engines
+and social networks to better index and display your site's content.")
+   (home-page
+    "https://github.com/jekyll/jekyll-seo-tag";)
+   (license license:expat)))
-- 
2.29.2






reply via email to

[Prev in Thread] Current Thread [Next in Thread]