From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:43773) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1f02Mj-0006OF-AA for guix-patches@gnu.org; Sun, 25 Mar 2018 05:55:06 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1f02Mg-0000HY-83 for guix-patches@gnu.org; Sun, 25 Mar 2018 05:55:05 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:44208) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1f02Mg-0000HS-3q for guix-patches@gnu.org; Sun, 25 Mar 2018 05:55:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1f02Mf-0004r7-Pi for guix-patches@gnu.org; Sun, 25 Mar 2018 05:55:01 -0400 Subject: [bug#30932] [PATCH] gnu: Add font-lohit. Resent-Message-ID: Received: from eggs.gnu.org ([2001:4830:134:3::10]:43435) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1f02LX-0006Gj-6f for guix-patches@gnu.org; Sun, 25 Mar 2018 05:53:52 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1f02LU-00084u-4D for guix-patches@gnu.org; Sun, 25 Mar 2018 05:53:51 -0400 Received: from vultr.systemreboot.net ([45.77.148.100]:49868) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1f02LT-00083H-LE for guix-patches@gnu.org; Sun, 25 Mar 2018 05:53:48 -0400 From: Arun Isaac Date: Sun, 25 Mar 2018 15:23:28 +0530 Message-Id: <20180325095328.30714-1-arunisaac@systemreboot.net> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 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: 30932@debbugs.gnu.org * gnu/packages/fonts.scm (font-lohit): New variable. --- gnu/packages/fonts.scm | 23 ++++++++++++++++++++++- 1 file changed, 22 insertions(+), 1 deletion(-) diff --git a/gnu/packages/fonts.scm b/gnu/packages/fonts.scm index 4b9c3e9ba..f57d5114a 100644 --- a/gnu/packages/fonts.scm +++ b/gnu/packages/fonts.scm @@ -19,7 +19,7 @@ ;;; Copyright © 2017 Alex Griffin ;;; Copyright © 2017 Clément Lassieur ;;; Copyright © 2017 Brendan Tildesley -;;; Copyright © 2017 Arun Isaac +;;; Copyright © 2017, 2018 Arun Isaac ;;; Copyright © 2017 Mohammed Sadiq ;;; Copyright © 2018 Charlie Ritter ;;; @@ -1289,3 +1289,24 @@ serif (Nachlieli) and monospaced (Miriam Mono) trivials. Also included Miriam, Drugulin, Aharoni, David, Hadasim etc. Cantillation marks support is available in Keter YG.") (license license:gpl2))) ; consult the LICENSE file included + +(define-public font-lohit + (package + (name "font-lohit") + (version "20140220") + (source + (origin + (method url-fetch) + (uri (string-append "https://releases.pagure.org/lohit/lohit-ttf-" + version ".tar.gz")) + (sha256 + (base32 + "1rmgr445hw1n851ywy28csfvswz1i6hnc8mzp88qw2xk9j4dn32d")))) + (build-system font-build-system) + (home-page "https://pagure.io/lohit") + (synopsis "Lohit TrueType Indic fonts") + (description "Lohit is a font family designed to cover Indic scripts. +Lohit supports the Assamese, Bengali, Devanagari (Hindi, Kashmiri, Konkani, +Maithili, Marathi, Nepali, Sindhi, Santali, Bodo, Dogri languages), Gujarati, +Kannada, Malayalam, Manipuri, Oriya, Punjabi, Tamil and Telugu scripts.") + (license license:silofl1.1))) -- 2.15.1