guix-patches
[Top][All Lists]
Advanced

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

[bug#41469] [PATCH] gnu: Add emacs-fountain-mode.


From: Vinicius Monego
Subject: [bug#41469] [PATCH] gnu: Add emacs-fountain-mode.
Date: Fri, 22 May 2020 21:51:41 -0300

* gnu/packages/emacs-xyz.scm (emacs-fountain-mode): New variable.
---
 gnu/packages/emacs-xyz.scm | 23 +++++++++++++++++++++++
 1 file changed, 23 insertions(+)

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index d952e8ea6c..83e280a21b 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -70,6 +70,7 @@
 ;;; Copyright © 2020 Alberto Eleuterio Flores Guerrero <address@hidden>
 ;;; Copyright © 2020 Marius Bakke <address@hidden>
 ;;; Copyright © 2020 pinoaffe <address@hidden>
+;;; Copyright © 2020 Vinicius Monego <address@hidden>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -23014,3 +23015,25 @@ files.")
 sources.  It features syntax highlighting, autocompletion, preview of buffer
 or region and use of locally installed binaries.")
     (license license:gpl3+)))
+
+(define-public emacs-fountain-mode
+  (package
+    (name "emacs-fountain-mode")
+    (version "3.1.0")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/rnkn/fountain-mode";)
+             (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "08giwg0jwk8zzj2i4cm08322qr6znrnv9a49za7c6j47bykpwj6s"))))
+    (build-system emacs-build-system)
+    (propagated-inputs
+     `(("emacs-seq" ,emacs-seq)))
+    (home-page "https://github.com/rnkn/fountain-mode";)
+    (synopsis "Major mode for screenwriting in Fountain markup")
+    (description "Fountain Mode is a scriptwriting program for GNU Emacs
+using the Fountain plain text markup format.")
+    (license license:gpl3+)))
-- 
2.20.1






reply via email to

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