diff options
author | Cayetano Santos <csantosb@inventati.org> | 2024-12-05 19:56:11 +0100 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2024-12-24 00:26:55 +0100 |
commit | 3c7144c5056af61b15f84ccf13c19e47dcd61089 (patch) | |
tree | a4c6300c63b0227dad8095ed523981f56521207e | |
parent | 7ca7059ccd4f127b3e442148495737221989d8b4 (diff) | |
download | guix-3c7144c5056af61b15f84ccf13c19e47dcd61089.tar.gz guix-3c7144c5056af61b15f84ccf13c19e47dcd61089.zip |
gnu: Add emacs-writefreely.
* gnu/packages/emacs-xyz.scm (emacs-writefreely): New variable.
Change-Id: I6c731afeee16944b97b493a6fba66af841b324a5
Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
-rw-r--r-- | gnu/packages/emacs-xyz.scm | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index 15b3e73712..678af8a2ee 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -18025,6 +18025,30 @@ in English as you type. It primarily detects \"weasel words\" and abuse of passive voice.") (license license:gpl3+))) +(define-public emacs-writefreely + (let ((commit "cfbba9c3a34f580f39c0796966ea76b0cf98a23e") + (revision "0")) + (package + (name "emacs-writefreely") + (version (git-version "0.1.0" revision commit)) + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/dangom/writefreely.el") + (commit commit))) + (file-name (git-file-name name version)) + (sha256 + (base32 "02gy3kg28igqcg7ai8n2p19q8m4xpgp5wn34n2fwz2bjymgf9g4s")))) + (build-system emacs-build-system) + (propagated-inputs (list emacs-ox-hugo emacs-request)) + (home-page "https://github.com/dangom/writefreely.el") + (synopsis "Emacs interface to the WriteFreely API") + (description + "This library publishes Org mode files as posts to any instance of the +federated blogging platform WriteFreely.") + (license license:gpl3+)))) + (define-public emacs-neotree (package (name "emacs-neotree") |