1
Fork 0
mirror of https://https.git.savannah.gnu.org/git/guix.git/ synced 2025-07-17 04:20:44 +02:00

gnu: Add emacs-bluetooth.

* gnu/packages/emacs-xyz.scm (emacs-bluetooth): New variable.

Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
This commit is contained in:
Nicolas Goaziou 2020-07-04 00:48:28 +02:00
parent 394ec7158a
commit 026b1344c3
No known key found for this signature in database
GPG key ID: DA00B4F048E92F2D

View file

@ -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")