andreas pushed a commit to branch master in repository guix. commit 686903d1f44d1eb05271bc0556b48366de99f8c9 Author: Lee Thompson <lee.p.th...@gmail.com> AuthorDate: Wed Apr 30 15:43:48 2025 +0200
gnu: Add font-apl385. * gnu/packages/apl.scm (font-apl385): New variable. Change-Id: I830aedf62a7fc62ee8fca6c1e138a78197f39f45 Signed-off-by: Andreas Enge <andr...@enge.fr> --- gnu/packages/apl.scm | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) 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 <efr...@flashner.co.il> ;;; Copyright © 2022 Paul A. Patience <p...@apatience.com> ;;; Copyright © 2023 B. Wilson <elaexuo...@wilsonb.com> +;;; Copyright © 2025 Lee Thompson <lee.p.th...@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")