guix-commits
[Top][All Lists]
Advanced

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

07/12: gnu: Add emacs-f.


From: Federico Beffa
Subject: 07/12: gnu: Add emacs-f.
Date: Sat, 01 Aug 2015 10:39:19 +0000

beffa pushed a commit to branch master
in repository guix.

commit cf9ce01fb3d5f4f036bd36c0cc69fa3a519a6685
Author: Federico Beffa <address@hidden>
Date:   Thu Jul 23 10:15:36 2015 +0200

    gnu: Add emacs-f.
    
    * gnu/packages/emacs.scm (emacs-f): New variable.
---
 gnu/packages/emacs.scm |   23 +++++++++++++++++++++++
 1 files changed, 23 insertions(+), 0 deletions(-)

diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm
index 2befebc..c2a9bb6 100644
--- a/gnu/packages/emacs.scm
+++ b/gnu/packages/emacs.scm
@@ -960,3 +960,26 @@ and stored in memory.")
     (description "This package provides an Emacs library for manipulating
 strings.")
     (license license:gpl3+)))
+
+(define-public emacs-f
+  (package
+    (name "emacs-f")
+    (version "0.17.2")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append
+                    "https://github.com/rejeep/f.el/archive/v";
+                    version ".tar.gz"))
+              (file-name (string-append name "-" version ".tar.gz"))
+              (sha256
+               (base32
+                "1n5gcldf43wmkr7jxgs519v21zavwr0yn8048iv6gvgfwicnyjlx"))))
+    (build-system emacs-build-system)
+    (propagated-inputs
+     `(("emacs-s" ,emacs-s)
+       ("emacs-dash" ,emacs-dash)))
+    (home-page "http://github.com/rejeep/f.el";)
+    (synopsis "Emacs API for working with files and directories")
+    (description "This package provides an Emacs library for working with
+files and directories.")
+    (license license:gpl3+)))



reply via email to

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