From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:42429) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1iFPrX-0004Sc-AV for guix-patches@gnu.org; Tue, 01 Oct 2019 17:39:17 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1iFPrV-0001mn-Aq for guix-patches@gnu.org; Tue, 01 Oct 2019 17:39:15 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:54507) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1iFPrR-0001ky-Uc for guix-patches@gnu.org; Tue, 01 Oct 2019 17:39:11 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1iFPrR-0007Hz-R5 for guix-patches@gnu.org; Tue, 01 Oct 2019 17:39:09 -0400 Subject: [bug#37444] [PATCH v4 12/24] added go package go-github-com-fsnotify-fsnotify Resent-Message-ID: From: Martin Becze Date: Tue, 1 Oct 2019 17:37:14 -0400 Message-Id: <20191001213726.21676-12-mjbecze@riseup.net> In-Reply-To: <20191001213726.21676-1-mjbecze@riseup.net> References: <20191001213726.21676-1-mjbecze@riseup.net> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 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: 37444@debbugs.gnu.org Cc: Martin Becze * gnu/packages/golang.scm (go-github-com-fsnotify-fsnotify): added package --- gnu/packages/golang.scm | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm index 640f9e5f15..52bf9ad49a 100644 --- a/gnu/packages/golang.scm +++ b/gnu/packages/golang.scm @@ -3987,3 +3987,29 @@ gist (https://gist.github.com/kballard/272720)") @item LMTP support @end itemize ") (license license:expat)))) + +(define-public go-github-com-fsnotify-fsnotify + (let ((url "https://github.com/fsnotify/fsnotify")) + (package + (name "go-github-com-fsnotify-fsnotify") + (version "1.4.7") + (source + (origin + (method git-fetch) + (uri (git-reference + (url url) + (commit (string-append "v" version)))) + (sha256 + (base32 + "07va9crci0ijlivbb7q57d2rz9h27zgn2fsm60spjsqpdbvyrx4g")) + (file-name (git-file-name name version)))) + (build-system go-build-system) + (arguments + '(#:import-path "github.com/fsnotify/fsnotify")) + (native-inputs + `(("go-github-com-emersion-go-sasl" ,go-github-com-emersion-go-sasl) + ("go-golang-org-x-sys-unix",go-golang-org-x-sys-unix))) + (home-page url) + (synopsis "File system notifications for Go") + (description "File system notifications for Go") + (license license:bsd-3)))) -- 2.23.0