guix-commits
[Top][All Lists]
Advanced

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

17/19: gnu: Add emacs-docker-compose-mode.


From: guix-commits
Subject: 17/19: gnu: Add emacs-docker-compose-mode.
Date: Mon, 6 May 2019 05:19:37 -0400 (EDT)

civodul pushed a commit to branch master
in repository guix.

commit d2ca86f308846bea8cfc88bfe4395deb3be457aa
Author: Brian Leung <address@hidden>
Date:   Fri Apr 19 20:59:45 2019 +0200

    gnu: Add emacs-docker-compose-mode.
    
    * gnu/packages/emacs-xyz.scm (emacs-docker-compose-mode): New variable.
    
    Signed-off-by: Ludovic Courtès <address@hidden>
---
 gnu/packages/emacs-xyz.scm | 25 +++++++++++++++++++++++++
 1 file changed, 25 insertions(+)

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index cc8c081..087294d 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -2823,6 +2823,31 @@ for Flow files.")
 respective @code{*Help*} buffers.")
       (license license:gpl3+))))
 
+(define-public emacs-docker-compose-mode
+  (package
+    (name "emacs-docker-compose-mode")
+    (version "1.1.0")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/meqif/docker-compose-mode";)
+             (commit version)))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32
+         "1fbcxwfvm33xcdj3cs26d9i1zyrryyjjkv7sc3mfxd45nq8d3ivj"))))
+    (build-system emacs-build-system)
+    (propagated-inputs
+     `(("emacs-dash" ,emacs-dash)
+       ("emacs-f" ,emacs-f)))
+    (home-page "https://github.com/meqif/docker-compose-mode/";)
+    (synopsis "Major mode for editing @file{docker-compose} files")
+    (description
+     "This is a major mode for @file{docker-compose} files that provides
+completion of relevant keywords.")
+    (license license:expat)))
+
 (define-public emacs-ob-ipython
   (package
     (name "emacs-ob-ipython")



reply via email to

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