From 382ba7bad59ec7205cd883bb93b5e6cf33329d66 Mon Sep 17 00:00:00 2001 From: Brice Waegeneire Date: Wed, 18 Mar 2020 12:26:28 +0100 Subject: gnu: Add emacs-org-static-blog. * gnu/packages/emacs-xyz.scm (emacs-org-static-blog): New variable. --- gnu/packages/emacs-xyz.scm | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index a821bc7776..932170f136 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -63,6 +63,7 @@ ;;; Copyright © 2020 Masaya Tojo ;;; Copyright © 2020 Martin Becze ;;; Copyright © 2020 Michael Rohleder +;;; Copyright © 2020 Brice Waegeneire ;;; ;;; This file is part of GNU Guix. ;;; @@ -21762,6 +21763,34 @@ records can be browsed and searched from the Emacs Calendar for convenience. All entries in a specified TODO state will be carried over to the next day.") (license license:bsd-3))) +(define-public emacs-org-static-blog + ;; Use the latest commit as the last release only contains half of the + ;; current total commits. New release requested at + ;; . + (package + (name "emacs-org-static-blog") + (version "20200117") + (home-page "https://github.com/bastibe/org-static-blog") + (source + (origin + (method git-fetch) + (uri (git-reference + (url home-page) + (commit "5c19300d7634e94ae813b1b66abc716fbb1e5fc9"))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "1m7vmibjc6yk2npfrnnqd3g2099300r0q8mr8cvyivmk5ailbfrh")))) + (build-system emacs-build-system) + (synopsis + "Simple Org mode based static blog generator") + (description + "@code{emacs-org-static-blog} is one more static blog generator, it +focuses on being simple. All file are simple Org files in a directory. The +only requirement is that every Org file must have a @samp{title} and +a @samp{date} keywords, and optionally, a @samp{filetags} keyword.") + (license license:bsd-3))) + (define-public emacs-ddskk ;; XXX: Upstream adds code names to their release tags, so version and code ;; name below need to be updated together. -- cgit v1.2.3