guix-commits
[Top][All Lists]
Advanced

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

02/03: gnu: Add emacs-pddl-mode.


From: guix-commits
Subject: 02/03: gnu: Add emacs-pddl-mode.
Date: Fri, 27 Oct 2023 10:38:35 -0400 (EDT)

lilyp pushed a commit to branch master
in repository guix.

commit c4eb5c680803ed17aee7a27770b302da2b035595
Author: Liliana Marie Prikler <liliana.prikler@gmail.com>
AuthorDate: Thu Oct 19 09:32:02 2023 +0200

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

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 265749d6df..10c4b0a636 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -36021,6 +36021,26 @@ should replace it.  However, if you call them again 
immediately after, they
 restore that occurrence of the placeholder and move to the next.")
       (license license:gpl3+))))
 
+(define-public emacs-pddl-mode
+  (package
+    (name "emacs-pddl-mode")
+    (version "0.100")
+    (source (origin
+              (method git-fetch)
+              (uri (git-reference
+                    (url "https://github.com/emacsmirror/pddl-mode";)
+                    (commit version)))
+              (file-name (git-file-name name version))
+              (sha256
+               (base32
+                "1zq5a0sv8am1c1gxky80dsi39gqsgnwbasv3nw4993r3ccz180r8"))))
+    (build-system emacs-build-system)
+    (home-page "https://github.com/emacsmirror/pddl-mode";)
+    (synopsis "Emacs mode for PDDL files")
+    (description "This package provides a major mode for browsing and editing
+PDDL files with syntax highlighting, templates, auto-completion, and more.")
+    (license license:gpl2+)))
+
 (define-public emacs-plantuml-mode
   (package
     (name "emacs-plantuml-mode")



reply via email to

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