From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:39907) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dp7t4-00039r-RX for guix-patches@gnu.org; Tue, 05 Sep 2017 03:03:16 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dp7t0-0000dp-0t for guix-patches@gnu.org; Tue, 05 Sep 2017 03:03:06 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:41406) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1dp7sz-0000dO-Ug for guix-patches@gnu.org; Tue, 05 Sep 2017 03:03:01 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1dp7sz-0002PS-NA for guix-patches@gnu.org; Tue, 05 Sep 2017 03:03:01 -0400 Subject: [bug#28353] [PATCH] gnu: Add emacs-go-mode. Resent-Message-ID: Received: from eggs.gnu.org ([2001:4830:134:3::10]:39498) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dp7rw-00034j-JY for guix-patches@gnu.org; Tue, 05 Sep 2017 03:02:06 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dp7rr-0008Sl-S2 for guix-patches@gnu.org; Tue, 05 Sep 2017 03:01:56 -0400 Received: from li622-129.members.linode.com ([212.71.249.129]:45868 helo=mira.cbaines.net) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dp7rr-0008Sb-LX for guix-patches@gnu.org; Tue, 05 Sep 2017 03:01:51 -0400 Received: from localhost (cpc102582-walt20-2-0-cust14.13-2.cable.virginm.net [86.27.34.15]) by mira.cbaines.net (Postfix) with ESMTPSA id DFC3713D455 for ; Tue, 5 Sep 2017 08:01:47 +0100 (BST) Received: from localhost.localdomain (localhost [127.0.0.1]) by localhost (OpenSMTPD) with ESMTP id 0d69396b for ; Tue, 5 Sep 2017 07:01:47 +0000 (UTC) From: Christopher Baines Date: Tue, 5 Sep 2017 08:01:47 +0100 Message-Id: <20170905070147.30876-1-mail@cbaines.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: 28353@debbugs.gnu.org * gnu/packages/emacs.scm (emacs-go-mode): New variable. --- gnu/packages/emacs.scm | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm index 5d9fd728a..bc01d5777 100644 --- a/gnu/packages/emacs.scm +++ b/gnu/packages/emacs.scm @@ -1193,6 +1193,26 @@ Using emacs-direnv means that programs started from Emacs will use the environment set through Direnv.") (license license:gpl3+))) +(define-public emacs-go-mode + (package + (name "emacs-go-mode") + (version "1.5.0") + (source (origin + (method url-fetch) + (uri (string-append "https://github.com/dominikh/go-mode.el/" + "archive/v" version ".tar.gz")) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 + "1adngbjyb8qnwg7n6r2y31djw9j6qf3b9fi63zd85035q7x4ljnm")))) + (build-system emacs-build-system) + (home-page "https://github.com/dominikh/go-mode.el") + (synopsis "Go mode for Emacs") + (description + "This package provides go-mode, an Emacs mode for working with software +written in the Go programming language.") + (license license:bsd-3))) + (define-public emacs-google-maps (package (name "emacs-google-maps") -- 2.14.1