From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:54657) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fJkS3-0007Oq-JA for guix-patches@gnu.org; Fri, 18 May 2018 14:50:04 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fJkS2-0000Zz-Lx for guix-patches@gnu.org; Fri, 18 May 2018 14:50:03 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:60490) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1fJkS2-0000Zv-IK for guix-patches@gnu.org; Fri, 18 May 2018 14:50:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1fJkS2-0001R5-Bq for guix-patches@gnu.org; Fri, 18 May 2018 14:50:02 -0400 Subject: [bug#31499] [PATCH 01/21] gnu: emacs-daemons: New variable. Resent-Message-ID: Received: from eggs.gnu.org ([2001:4830:134:3::10]:54176) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fJkRI-0006KF-Dv for guix-patches@gnu.org; Fri, 18 May 2018 14:49:17 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fJkRH-0008Fx-IL for guix-patches@gnu.org; Fri, 18 May 2018 14:49:16 -0400 Received: from mail-wr0-x22d.google.com ([2a00:1450:400c:c0c::22d]:38266) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1fJkRH-0008ES-Bj for guix-patches@gnu.org; Fri, 18 May 2018 14:49:15 -0400 Received: by mail-wr0-x22d.google.com with SMTP id 94-v6so10157788wrf.5 for ; Fri, 18 May 2018 11:49:15 -0700 (PDT) Received: from mimimi.home (2a01cb040a37a0005adf9a0845f647b3.ipv6.abo.wanadoo.fr. [2a01:cb04:a37:a000:5adf:9a08:45f6:47b3]) by smtp.gmail.com with ESMTPSA id q2-v6sm8369863wrj.57.2018.05.18.11.49.13 for (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Fri, 18 May 2018 11:49:13 -0700 (PDT) From: Pierre Neidhardt Date: Fri, 18 May 2018 20:48:51 +0200 Message-Id: <20180518184910.9987-2-ambrevar@gmail.com> In-Reply-To: <20180518184910.9987-1-ambrevar@gmail.com> References: <20180518184910.9987-1-ambrevar@gmail.com> 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: 31499@debbugs.gnu.org * gnu/packages/emacs.scm (emacs-daemons): New variable. --- gnu/packages/emacs.scm | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm index f3d08e810..10bf4c355 100644 --- a/gnu/packages/emacs.scm +++ b/gnu/packages/emacs.scm @@ -10464,3 +10464,26 @@ 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 url-fetch) + (uri (string-append "https://github.com/cbowdon/daemons.el/archive/" + version ".tar.gz")) + (file-name (string-append name "-" version "-checkout")) + (sha256 + (base32 + "14ivawzxiy8q8x2ccpw05ng83zqd70cdkn287yrc2c9nm1ix98bf")))) + (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+))) -- 2.17.0