From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:37447) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1jDk0i-0006NI-Mv for guix-patches@gnu.org; Mon, 16 Mar 2020 03:18:06 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1jDk0h-0006Xl-DQ for guix-patches@gnu.org; Mon, 16 Mar 2020 03:18:04 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:58234) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1jDk0h-0006S9-40 for guix-patches@gnu.org; Mon, 16 Mar 2020 03:18:03 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1jDk0f-0001HG-Si for guix-patches@gnu.org; Mon, 16 Mar 2020 03:18:01 -0400 Subject: [bug#40086] [PATCH 02/11] gnu: Add go-golang-org-rainycape-unidecode. References: <20200316070412.12364-1-efraim@flashner.co.il> In-Reply-To: <20200316070412.12364-1-efraim@flashner.co.il> Resent-Message-ID: From: Efraim Flashner Date: Mon, 16 Mar 2020 09:15:49 +0200 Message-Id: <20200316071559.13930-2-efraim@flashner.co.il> 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: 40086@debbugs.gnu.org Cc: Efraim Flashner * gnu/packages/golang.scm (go-golang-org-rainycape-unidecode): New variable. --- gnu/packages/golang.scm | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm index 782709fdf6..db40973063 100644 --- a/gnu/packages/golang.scm +++ b/gnu/packages/golang.scm @@ -3426,3 +3426,28 @@ data serialization format.") (description " A glob library that implements descending into other directories. It is optimized for filewalking. ") (license license:expat))) + +(define-public go-golang-org-rainycape-unidecode + (let ((commit "cb7f23ec59bec0d61b19c56cd88cee3d0cc1870c") + (revision "1")) + (package + (name "go-golang-org-rainycape-unidecode") + (version (git-version "0.0.0" revision commit)) + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/rainycape/unidecode") + (commit commit))) + (file-name (string-append "go-golang-org-rainycape-unidecode-" + version "-checkout")) + (sha256 + (base32 + "1wvzdijd640blwkgmw6h09frkfa04kcpdq87n2zh2ymj1dzla5v5")))) + (build-system go-build-system) + (arguments + `(#:import-path "golang.org/rainycape/unidecode")) + (home-page "https://github.com/rainycape/unidecode") + (synopsis "Unicode transliterator in Golang") + (description "Unicode transliterator in Golang - Replaces non-ASCII +characters with their ASCII approximations.") + (license license:asl2.0)))) -- 2.25.1