guix-commits
[Top][All Lists]
Advanced

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

04/08: gnu: Add emacs-csv-mode.


From: Ludovic Courtès
Subject: 04/08: gnu: Add emacs-csv-mode.
Date: Mon, 11 Dec 2017 11:14:45 -0500 (EST)

civodul pushed a commit to branch master
in repository guix.

commit 9faa46ee48d12bf55355805a84a7c533f904a39d
Author: Maxim Cournoyer <address@hidden>
Date:   Sat Dec 9 22:39:00 2017 -0500

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

diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm
index f5048c3..d5142d7 100644
--- a/gnu/packages/emacs.scm
+++ b/gnu/packages/emacs.scm
@@ -6330,6 +6330,28 @@ and shell-command prompts that are based on bash 
completion.")
 let users kill or mark things easily.")
     (license license:gpl3+)))
 
+(define-public emacs-csv-mode
+  (package
+    (name "emacs-csv-mode")
+    (version "1.7")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (string-append "http://elpa.gnu.org/packages/csv-mode-";
+                           version ".el"))
+       (sha256
+        (base32
+         "0r4bip0w3h55i8h6sxh06czf294mrhavybz0zypzrjw91m1bi7z6"))))
+    (build-system emacs-build-system)
+    (home-page
+     "http://elpa.gnu.org/packages/csv-mode.html";)
+    (synopsis
+     "Major mode for editing comma/char separated values")
+    (description
+     "This Emacs package implements CSV mode, a major mode for editing records
+in a generalized CSV (character-separated values) format.")
+    (license license:gpl3+)))
+
 (define-public emacs-transmission
   (package
     (name "emacs-transmission")



reply via email to

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