wigust pushed a commit to branch master
in repository guix.

commit 6d6d9acc53d29eb5558c8a503f773dd883cad96d
Author: Oleg Pykhalov <go.wig...@gmail.com>
Date:   Wed May 2 19:08:01 2018 +0300

    gnu: Add emacs-lice-el.
    
    * gnu/packages/emacs.scm (emacs-lice-el): New public variable.
---
 gnu/packages/emacs.scm | 25 +++++++++++++++++++++++++
 1 file changed, 25 insertions(+)

diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm
index 77b5d2c..9ea2c49 100644
--- a/gnu/packages/emacs.scm
+++ b/gnu/packages/emacs.scm
@@ -9518,3 +9518,28 @@ with absolutely no stored indexes (TAGS) or persistent 
background processes.
 Dumb Jump performs best with The Silver Searcher `ag` or ripgrep `rg`
 installed.  Dumb Jump requires at least GNU Emacs 24.3. ")
     (license license:gpl3+)))
+
+(define-public emacs-lice-el
+  (let ((commit "4339929927c62bd636f89bb39ea999d18d269250"))
+    (package
+      (name "emacs-lice-el")
+      (version (git-version "0.2" "1" commit))
+      (source (origin
+                (method git-fetch)
+                (uri (git-reference
+                      (url "https://github.com/buzztaiki/lice-el.git";)
+                      (commit commit)))
+                (file-name (git-file-name name version))
+                (sha256
+                 (base32
+                  "0879z761b7gajkhq176ps745xpdrivch349crransv8fnsc759yb"))))
+      (build-system emacs-build-system)
+      (home-page "https://github.com/buzztaiki/lice-el";)
+      (synopsis "License and header template for Emacs")
+      (description "@code{lice.el} provides following features:
+
+@itemize
+@item License template management.
+@item File header insertion.
+@end itemize\n")
+      (license license:gpl3+))))

Reply via email to