[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
branch master updated: gnu: Add emacs-bluetooth.
From: |
guix-commits |
Subject: |
branch master updated: gnu: Add emacs-bluetooth. |
Date: |
Fri, 03 Jul 2020 18:48:49 -0400 |
This is an automated email from the git hooks/post-receive script.
ngz pushed a commit to branch master
in repository guix.
The following commit(s) were added to refs/heads/master by this push:
new 026b134 gnu: Add emacs-bluetooth.
026b134 is described below
commit 026b1344c38e538f9d22f19fcd3099668f033d4b
Author: Nicolas Goaziou <mail@nicolasgoaziou.fr>
AuthorDate: Sat Jul 4 00:48:28 2020 +0200
gnu: Add emacs-bluetooth.
* gnu/packages/emacs-xyz.scm (emacs-bluetooth): New variable.
Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
---
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 8b47c52..d829a38 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -1666,6 +1666,31 @@ like. It can be linked with various Emacs mail clients
(Message and Mail
mode, Rmail, Gnus, MH-E, and VM). BBDB is fully customizable.")
(license license:gpl3+)))
+(define-public emacs-bluetooth
+ (package
+ (name "emacs-bluetooth")
+ (version "0.1.2")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append "https://elpa.gnu.org/packages/"
+ "bluetooth-" version ".el"))
+ (sha256
+ (base32 "1vp2vpyq0ybjni35ics1mg1kiwgvc7x12dlmvygy78sqp52sfkcv"))))
+ (build-system emacs-build-system)
+ (inputs
+ `(("bluez" ,bluez)))
+ (propagated-inputs
+ `(("emacs-dash" ,emacs-dash)))
+ (home-page "https://gitlab.com/rstocker/emacs-bluetooth")
+ (synopsis "Manage Bluetooth devices using Emacs")
+ (description
+ "This package implements basic Bluetooth management functionality, such
+as connecting and disconnecting devices, setting properties and aliases,
+putting the adapter in discovery mode and controlling its power supply. It
+also includes a pairing agent.")
+ (license license:gpl3+)))
+
(define-public emacs-aggressive-indent
(package
(name "emacs-aggressive-indent")
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- branch master updated: gnu: Add emacs-bluetooth.,
guix-commits <=