[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
10/11: gnu: Add emacs-erlang.
From: |
guix-commits |
Subject: |
10/11: gnu: Add emacs-erlang. |
Date: |
Sun, 7 Apr 2019 16:24:27 -0400 (EDT) |
civodul pushed a commit to branch master
in repository guix.
commit d6449c362b13f5443aa2c592e472b5f9373648f6
Author: Carlo Zancanaro <address@hidden>
Date: Thu Dec 27 20:11:31 2018 +1100
gnu: Add emacs-erlang.
* gnu/packages/erlang.scm (emacs-erlang): New variable.
Signed-off-by: Ludovic Courtès <address@hidden>
---
gnu/packages/erlang.scm | 19 +++++++++++++++++++
1 file changed, 19 insertions(+)
diff --git a/gnu/packages/erlang.scm b/gnu/packages/erlang.scm
index 9c38b53..4fba7ee 100644
--- a/gnu/packages/erlang.scm
+++ b/gnu/packages/erlang.scm
@@ -23,6 +23,7 @@
(define-module (gnu packages erlang)
#:use-module ((guix licenses) #:prefix license:)
#:use-module (guix build-system gnu)
+ #:use-module (guix build-system emacs)
#:use-module (guix download)
#:use-module (guix git-download)
#:use-module (guix packages)
@@ -212,3 +213,21 @@ built-in support for concurrency, distribution and fault
tolerance.")
;; have other licenses. See 'system/COPYRIGHT' in the source distribution.
(license (list license:asl2.0 license:bsd-2 license:bsd-3 license:expat
license:lgpl2.0+ license:tcl/tk license:zlib))))
+
+(define-public emacs-erlang
+ (package
+ (name "emacs-erlang")
+ (version (package-version erlang))
+ (source (package-source erlang))
+ (build-system emacs-build-system)
+ (arguments
+ `(#:phases
+ (modify-phases %standard-phases
+ (add-before 'set-emacs-load-path 'change-working-directory
+ (lambda _ (chdir "lib/tools/emacs") #t)))))
+ (home-page "https://www.erlang.org/")
+ (synopsis "Erlang major mode for Emacs")
+ (description
+ "This package provides an Emacs major mode for editing Erlang source
+files.")
+ (license license:asl2.0)))
- branch master updated (ecfbc51 -> d78bfd2), guix-commits, 2019/04/07
- 03/11: installer: Adjust welcome page message., guix-commits, 2019/04/07
- 01/11: installer: Offer NM, Connman, and DHCP to non-desktop installs., guix-commits, 2019/04/07
- 04/11: install: Remove "GuixSD"., guix-commits, 2019/04/07
- 05/11: install: Tweak motd., guix-commits, 2019/04/07
- 06/11: gnu: emacs-exwm: Provide absolute file name in '.desktop' file., guix-commits, 2019/04/07
- 02/11: installer: Internationalize service "names"., guix-commits, 2019/04/07
- 07/11: gnu: emacs-js2-mode: Update to 20190219., guix-commits, 2019/04/07
- 10/11: gnu: Add emacs-erlang.,
guix-commits <=
- 08/11: gnu: emacs-evil-matchit: Update to 2.2.9., guix-commits, 2019/04/07
- 11/11: gnu: Add emacs-protobuf-mode., guix-commits, 2019/04/07
- 09/11: gnu: emacs-wgrep: Update to 2.3.0., guix-commits, 2019/04/07