diff options
author | Arun Isaac <arunisaac@systemreboot.net> | 2020-07-15 16:20:12 +0530 |
---|---|---|
committer | Arun Isaac <arunisaac@systemreboot.net> | 2020-07-23 04:03:48 +0530 |
commit | eb404f30adfa74ce9efcf3a5e5833204a9c3ee56 (patch) | |
tree | 5aebec929bdd9bb58d10736ecbf126a9c3282570 | |
parent | c984b70ccb0037406f36d2718c4bbb9a5539e7a3 (diff) |
gnu: Add font-catamaran.
* gnu/packages/fonts.scm (font-catamaran): New variable.
-rw-r--r-- | gnu/packages/fonts.scm | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/gnu/packages/fonts.scm b/gnu/packages/fonts.scm index 763e8028e2..f4c62ee69c 100644 --- a/gnu/packages/fonts.scm +++ b/gnu/packages/fonts.scm @@ -1936,3 +1936,27 @@ languages, it contains Japanese characters, including Kana glyphs and more than 5,300 Kanji glyphs, as well major international phonetic symbols, operators and special symbols.") (license (license:non-copyleft "file:///LICENSE_E")))) + +(define-public font-catamaran + (let ((commit "7559b4906f9c9148fb22c6f89508c3053a78a296") + (revision "1")) + (package + (name "font-catamaran") + (version (git-version "0.0.0" revision commit)) + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/VanillaandCream/Catamaran-Tamil") + (commit commit))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "1wpp41l7j2kpgnyavhgxcc5wp852a4wqsnwravn39gp980s84yxw")))) + (build-system font-build-system) + (home-page "https://github.com/VanillaandCream/Catamaran-Tamil") + (synopsis "9 weight Tamil and Latin type") + (description "Catamaran is a 9 weight Tamil and Latin type. Catamaran +is a stylish type with a polished yet relaxed feel. Its versatility makes it +suitable for a wide range of uses.") + (license license:silofl1.1)))) |