From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:41883) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fL2oz-0000KM-5g for guix-patches@gnu.org; Tue, 22 May 2018 04:39:06 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fL2ow-0007df-0f for guix-patches@gnu.org; Tue, 22 May 2018 04:39:05 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:35690) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1fL2ov-0007dX-T7 for guix-patches@gnu.org; Tue, 22 May 2018 04:39:01 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1fL2ov-00021R-MR for guix-patches@gnu.org; Tue, 22 May 2018 04:39:01 -0400 Subject: [bug#31499] [PATCH 01/21] gnu: emacs-daemons: New variable. Resent-Message-ID: References: <20180518184910.9987-1-ambrevar@gmail.com> <20180518184910.9987-2-ambrevar@gmail.com> <87zi0soj8t.fsf@elephly.net> <87603g3xwq.fsf@gmail.com> From: Pierre Neidhardt In-reply-to: <87603g3xwq.fsf@gmail.com> Date: Tue, 22 May 2018 10:37:54 +0200 Message-ID: <8736yk3x25.fsf@gmail.com> MIME-Version: 1.0 Content-Type: multipart/signed; boundary="=-=-="; micalg=pgp-sha256; protocol="application/pgp-signature" List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: Ricardo Wurmus Cc: 31499@debbugs.gnu.org --=-=-= Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable * gnu/packages/emacs.scm (emacs-daemons): New variable. =2D-- gnu/packages/emacs.scm | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm index f3d08e810..24ab1ba6f 100644 =2D-- a/gnu/packages/emacs.scm +++ b/gnu/packages/emacs.scm @@ -34,6 +34,7 @@ ;;; Copyright =C2=A9 2017, 2018 Maxim Cournoyer ;;; Copyright =C2=A9 2018 Sohom Bhattacharjee ;;; Copyright =C2=A9 2018 Mathieu Lirzin +;;; Copyright =C2=A9 2018 Pierre Neidhardt ;;; ;;; This file is part of GNU Guix. ;;; @@ -10464,3 +10465,27 @@ Dumb Jump performs best with The Silver Searcher @= command{ag} or ripgrep "This package provides an Emacs minor mode for highlighting device tree files.") (license license:gpl3+)))) + +(define-public emacs-daemons + (package + (name "emacs-daemons") + (version "1.2.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/cbowdon/daemons.el") + (commit version))) + (file-name (string-append name "-" version "-checkout")) + (sha256 + (base32 + "00ijgm22ck76gw0x79krl05yy0m8a502yfakazfy5xhpn1zi6ab7")))) + (build-system emacs-build-system) + (home-page "https://github.com/cbowdon/daemons.el") + (synopsis "Emacs UI for managing init system services") + (description + "This is an Emacs mode to give you a UI for managing init system +daemons (services) for those getting tired of typing out @code{sudo service +my_thing reload} all the time. It's offers a consistent UI over different +init systems.") + (license license:gpl3+))) =2D-=20 2.17.0 --=-=-= Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQEzBAEBCAAdFiEEUPM+LlsMPZAEJKvom9z0l6S7zH8FAlsD1uIACgkQm9z0l6S7 zH+B3Af/VBQ3iA9aJowkqUQvXHcxDZkLyLZuYkpapCce7jFkvqOK319ElxWL6npC dojVSTNQ7aEJH7PsdxiMCJ3uAD99oz4QTgEZVZCGzDao/rWdVKBVbAytmMYQVOpy SPM6mhIuTEvAA65SmNVEtVyN+TDoOxNqT7WC4HVZ9ljS84WG9+0CXt49ojukXXLp XXG221B0pB1Fku+xprGaWtbIRizNtVZAMvNUynjCELCdzQhBXsLZ3Bpz3otpzDq6 x/uQqwTSM5vHod6mSVADxUeyqCKu0zQI0fWAjOxGNNHbuxy4XHrPLwwMWLjpbeR5 Fwq6R77eygLSFjS3BltzPXY/6dhoTA== =0u2g -----END PGP SIGNATURE----- --=-=-=--