summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLee Thompson <lee.p.thomp@gmail.com>2025-04-30 15:43:48 +0200
committerAndreas Enge <andreas@enge.fr>2025-04-30 15:47:56 +0200
commit686903d1f44d1eb05271bc0556b48366de99f8c9 (patch)
treef210179e570fd06dcc8b64d9d2e4b06007ce7bc9
parentbb8cc412c8fcab613c402e06ae7024d6df5c9010 (diff)
gnu: Add font-apl385.
* gnu/packages/apl.scm (font-apl385): New variable. Change-Id: I830aedf62a7fc62ee8fca6c1e138a78197f39f45 Signed-off-by: Andreas Enge <andreas@enge.fr>
-rw-r--r--gnu/packages/apl.scm23
1 files changed, 23 insertions, 0 deletions
diff --git a/gnu/packages/apl.scm b/gnu/packages/apl.scm
index 1c1cd200a9..beb8121805 100644
--- a/gnu/packages/apl.scm
+++ b/gnu/packages/apl.scm
@@ -4,6 +4,7 @@
;;; Copyright © 2017, 2019 Efraim Flashner <efraim@flashner.co.il>
;;; Copyright © 2022 Paul A. Patience <paul@apatience.com>
;;; Copyright © 2023 B. Wilson <elaexuotee@wilsonb.com>
+;;; Copyright © 2025 Lee Thompson <lee.p.thomp@gmail.com>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -22,10 +23,12 @@
(define-module (gnu packages apl)
#:use-module ((guix licenses) #:prefix license:)
+ #:use-module (guix download)
#:use-module (guix git-download)
#:use-module (guix svn-download)
#:use-module (guix gexp)
#:use-module (guix packages)
+ #:use-module (guix build-system font)
#:use-module (guix build-system gnu)
#:use-module (guix build-system trivial)
#:use-module (gnu packages bash)
@@ -124,6 +127,26 @@ 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-apl385
+ (package
+ (name "font-apl385")
+ ;; No version number or release, unzipping source and checking file times
+ ;; shows the font file was last modified on 2016-08-21.
+ (version "20160821")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append "https://apl385.com/fonts/" "apl385.zip"))
+ (sha256
+ (base32 "132qfsnx0v6qf8x8iy3flivv449nz42nnpkwjysmz65w6wqxpk1g"))))
+ (build-system font-build-system)
+ (home-page "https://apl385.com/fonts/index.htm")
+ (synopsis "Monospaced APL font inspired by Comic Sans Serif")
+ (description
+ "Adrian Smith's monospaced APL font developed with APL software vendors
+in the late 1980s.")
+ (license license:public-domain)))
+
(define-public dzaima-apl
(package
(name "dzaima-apl")