diff options
author | Kurome <hunt31999@gmail.com> | 2025-06-07 10:13:08 +0900 |
---|---|---|
committer | Hilton Chain <hako@ultrarare.space> | 2025-06-08 01:04:30 +0800 |
commit | 8e70c92b18b4e80f1eded9b02e16194a7dc9ec57 (patch) | |
tree | 80c6112b2187e7d8aaee3f78dde225231abb0cf8 | |
parent | 42c87bf59c9f01c1a14d26570c3ad0f8f06c4b8c (diff) |
gnu: Deprecate font-vazir.
See also <https://github.com/rastikerdar/vazirmatn/blob/master/CHANGELOG.md#3200>.
* gnu/packages/fonts.scm (font-vazir): Superseded by font-vazirmatn.
Change-Id: I9e6da586682f29cb57bff34cf3c3cc1578da907a
Signed-off-by: Hilton Chain <hako@ultrarare.space>
Modified-by: Hilton Chain <hako@ultrarare.space>
-rw-r--r-- | gnu/packages/fonts.scm | 43 |
1 files changed, 4 insertions, 39 deletions
diff --git a/gnu/packages/fonts.scm b/gnu/packages/fonts.scm index 38e08c96c3..645441101a 100644 --- a/gnu/packages/fonts.scm +++ b/gnu/packages/fonts.scm @@ -3243,45 +3243,6 @@ designed to work for programming in the Julia Programming Language and other text environments.") (license license:silofl1.1))) -(define-public font-vazir - (package - (name "font-vazir") - (version "22.1.0") - (source - (origin - (method url-fetch/zipbomb) - (uri - (string-append "https://github.com/rastikerdar/vazir-font/" - "releases/download/v" version - "/vazir-font-v" version ".zip")) - (sha256 - (base32 - "0w3gwb5q33x5llw7cfs8qhaxr4ssg6rsx4b9day3993zn24xq031")))) - (build-system font-build-system) - (home-page "https://rastikerdar.github.io/vazir-font/") - (synopsis "Vazir Persian typeface") - (description - "Vazir is a beautiful and elegant Persian typeface originally based on -DejaVu, and comes in six variants: Thin, Light, Normal, Medium, Bold, and -Black. This package provides four versions of Vazir: - -@itemize -@item @code{Vazir}: The main version; includes Latin glyphs from Roboto. -@item @code{Vazir-FD}: Like @code{Vazir}, but (always) uses Farsi digit glyphs -instead of Latin ones. -@item @code{Vazir-WOL}: Like @code{Vazir}, but without Roboto's Latin glyphs. -@item @code{Vazir-FD-WOL}: Combination of @code{Vazir-FD} and @code{Vazir-WOL}: -always uses Farsi digits, and does not include Latin glyphs from Roboto. -@end itemize\n") - (license - ;; See https://github.com/rastikerdar/vazir-font/blob/master/LICENSE for - ;; details. - (list license:public-domain ; the Vazir modifications to DejaVu - ; and the DejaVu modifications to... - (license:x11-style ; ...the Bitstream Vera typeface - "file://LICENSE" "Bitstream Vera License") - license:asl2.0)))) ; Latin glyphs from Roboto - (define-public font-vazirmatn (package (name "font-vazirmatn") @@ -3303,6 +3264,10 @@ always uses Farsi digits, and does not include Latin glyphs from Roboto. and legible typeface suitable for web pages and applications.") (license license:silofl1.1))) +;; https://github.com/rastikerdar/vazirmatn/blob/master/CHANGELOG.md#3200 +(define-public font-vazir + (deprecated-package "font-vazir" font-vazirmatn)) + (define-public font-victor-mono (package (name "font-victor-mono") |