From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:42542) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1iFPrb-0004Vh-2q for guix-patches@gnu.org; Tue, 01 Oct 2019 17:39:20 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1iFPrZ-0001r7-Eh for guix-patches@gnu.org; Tue, 01 Oct 2019 17:39:18 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:54515) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1iFPrY-0001qF-5v for guix-patches@gnu.org; Tue, 01 Oct 2019 17:39:17 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1iFPrY-0007J4-24 for guix-patches@gnu.org; Tue, 01 Oct 2019 17:39:16 -0400 Subject: [bug#37444] [PATCH v4 20/24] added go package go-git-sr-ht-sircmpwn-pty Resent-Message-ID: From: Martin Becze Date: Tue, 1 Oct 2019 17:37:22 -0400 Message-Id: <20191001213726.21676-20-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-git-sr-ht-sircmpwn-pty): added package --- gnu/packages/golang.scm | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm index fb85c4f5b7..b925f5df95 100644 --- a/gnu/packages/golang.scm +++ b/gnu/packages/golang.scm @@ -4189,3 +4189,27 @@ quoting, commenting, and escaping.") (description "A POSIX-compatible getopt implementation for Go, because POSIX getopt is The Correct Way to interpret arguments to command line utilities.") (license license:expat)))) + +(define-public go-git-sr-ht-sircmpwn-pty + (let ((commit "3a43678975a9cb13dbcf05ea7a1611ebce3eadb2") + (url "https://git.sr.ht/~sircmpwn/pty")) + (package + (name "go-git-sr-ht-sircmpwn-pty") + (version (git-version "0.0.0" "0" commit)) + (source + (origin + (method git-fetch) + (uri (git-reference + (url url) + (commit commit))) + (sha256 + (base32 + "1spa779vb2j1vgwm1cpbmf7f8wj6zwyyy49ihz134izvah7vncsw")) + (file-name (git-file-name name version)))) + (build-system go-build-system) + (arguments + '(#:import-path "git.sr.ht/~sircmpwn/pty")) + (home-page url) + (synopsis "A Go package for using unix pseudo-terminals") + (description "Pty is a Go package for using unix pseudo-terminals.") + (license license:expat)))) -- 2.23.0