guix-commits
[Top][All Lists]
Advanced

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

01/03: gnu: Add ruby-jekyll-feed.


From: guix-commits
Subject: 01/03: gnu: Add ruby-jekyll-feed.
Date: Sun, 28 Feb 2021 17:16:56 -0500 (EST)

hoebjo pushed a commit to branch master
in repository guix.

commit d4baac70b85ec5f9690328c5e0b0adee84b6b420
Author: Giacomo Leidi <goodoldpaul@autistici.org>
AuthorDate: Mon Jan 4 02:00:12 2021 +0100

    gnu: Add ruby-jekyll-feed.
    
    * gnu/packages/ruby.scm (ruby-jekyll-feed): New variable.
    
    Signed-off-by: Björn Höfling <bjoern.hoefling@bjoernhoefling.de>
---
 gnu/packages/ruby.scm | 25 +++++++++++++++++++++++++
 1 file changed, 25 insertions(+)

diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm
index 8d36468..01f78fd 100644
--- a/gnu/packages/ruby.scm
+++ b/gnu/packages/ruby.scm
@@ -12283,3 +12283,28 @@ exceptions with predefined messages.")
 giving detailed reports on the time taken for each task.")
     (home-page "https://github.com/ruby/benchmark";)
     (license license:bsd-2)))
+
+(define-public ruby-jekyll-feed
+  (package
+    (name "ruby-jekyll-feed")
+    (version "0.15.1")
+    (source
+      (origin
+        (method url-fetch)
+        (uri (rubygems-uri "jekyll-feed" version))
+        (sha256
+          (base32
+            "1zxqkrnix0xiw98531h5ga6h69jhzlx2jh9qhvcl67p8nq3sgza9"))))
+    (build-system ruby-build-system)
+    (arguments
+     `(#:tests? #false))     ;there are none
+    (propagated-inputs
+      `(("jekyll" ,jekyll)))
+    (synopsis
+      "Jekyll plugin to generate an Atom feed of your Jekyll posts")
+    (description
+      "This package provides a Jekyll plugin to generate an Atom feed
+of your Jekyll posts.")
+    (home-page
+      "https://github.com/jekyll/jekyll-feed";)
+    (license license:expat)))



reply via email to

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