diff options
author | Lee Thompson <lee.p.thomp@gmail.com> | 2025-04-30 15:47:10 +0200 |
---|---|---|
committer | Andreas Enge <andreas@enge.fr> | 2025-04-30 15:47:56 +0200 |
commit | 9f53ed3a38b2327dcbb112ceccdcd211d3a17f35 (patch) | |
tree | bcd30559529ed28c79e4fe23242d2f0ae0b5b7f0 | |
parent | 686903d1f44d1eb05271bc0556b48366de99f8c9 (diff) |
gnu: Add font-apl333.
* gnu/packages/apl.scm (font-apl333): New variable.
Change-Id: I0d7ed2f1a66528fa0823640824c5e70bbf35c912
Signed-off-by: Andreas Enge <andreas@enge.fr>
-rw-r--r-- | gnu/packages/apl.scm | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/gnu/packages/apl.scm b/gnu/packages/apl.scm index beb8121805..5d159a90ef 100644 --- a/gnu/packages/apl.scm +++ b/gnu/packages/apl.scm @@ -127,6 +127,25 @@ including both uppercase and lowercase underscored alphabets, as-of-yet unused symbols, and almost all Latin-1 accented letters.") (license license:unlicense)))) +(define-public font-apl333 + (package + (name "font-apl333") + ;; Version number as for apl-385, last modified 2013-04-20. + (version "20130420") + (source + (origin + (method url-fetch) + (uri (string-append "https://apl385.com/fonts/" "apl333.zip")) + (sha256 + (base32 "0yn0ha7d14vp4ma3lxbc9kpyrn20m7brjisr6w55c9mi24w9v3a5")))) + (build-system font-build-system) + (home-page "https://apl385.com/fonts/index.htm") + (synopsis "Variable-width APL font inspired by Comic Sans Serif") + (description + "Variable-width version of Adrian Smith's APL385 font developed with APL +software vendors in the late 1980s.") + (license license:public-domain))) + (define-public font-apl385 (package (name "font-apl385") |