From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:50872) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fKrGv-0001sx-15 for guix-patches@gnu.org; Mon, 21 May 2018 16:19:10 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fKrGo-00070V-HH for guix-patches@gnu.org; Mon, 21 May 2018 16:19:07 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:35351) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1fKrGo-00070D-D4 for guix-patches@gnu.org; Mon, 21 May 2018 16:19:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1fKrGo-0008RA-3B for guix-patches@gnu.org; Mon, 21 May 2018 16:19:02 -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> From: Ricardo Wurmus In-reply-to: <20180518184910.9987-2-ambrevar@gmail.com> Date: Mon, 21 May 2018 22:18:26 +0200 MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Message-ID: <87zi0soj8t.fsf@elephly.net> 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: Pierre Neidhardt Cc: 31499@debbugs.gnu.org Hi Pierre, > * 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/archiv= e/" > + version ".tar.gz")) Please do not use these auto-generated tarballs from GitHub, as they are generated upon demand. This means that at some point in the future the hash may change. Use =E2=80=9Cgit-fetch=E2=80=9D instead. > + (file-name (string-append name "-" version "-checkout")) If you=E2=80=99re using a tarball, then the name should not end on =E2=80= =9C-checkout=E2=80=9D. Thanks! --=20 Ricardo