From 7cc4a096ea565850fdb80dd8c5103fa3d0fe3ae2 Mon Sep 17 00:00:00 2001 From: bd Date: Fri, 7 Nov 2025 13:58:51 -0500 Subject: init --- bd/font-medieval-sharp.scm | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 bd/font-medieval-sharp.scm (limited to 'bd/font-medieval-sharp.scm') diff --git a/bd/font-medieval-sharp.scm b/bd/font-medieval-sharp.scm new file mode 100644 index 0000000..2fd15a0 --- /dev/null +++ b/bd/font-medieval-sharp.scm @@ -0,0 +1,34 @@ +(define-module (bd font-medieval-sharp) + #:use-module ((guix licenses) #:prefix license:) + #:use-module (gnu packages) + #:use-module (guix packages) + #:use-module (gnu packages autotools) + #:use-module (guix gexp) + #:use-module (guix build-system font) + #:use-module (guix download) + #:export (font-medieval-sharp)) + +;;; Commentary: +;;; provides the medieval-sharp font +;;; Code: + +(define font-medieval-sharp + ;; Upstream doesn't provide any version numbers. It may be desirable to + ;; mirror this elsewhere to avoid suddenly losing the current source file. + (package + (name "font-medieval-sharp") + (version "20200401") + (source (origin + (method url-fetch) + (uri "https://fontlibrary.org/assets/downloads/medievalsharp/a03760934a82973ef127071373557645/medievalsharp.zip") + (sha256 + (base32 + "1z7gp1q6j3zra22r9clccr7a77wzgyhyip5gjd1y7x58ipglhrw1")))) + (build-system font-build-system) + (home-page "https://fontlibrary.org/en/font/medievalsharp") + (synopsis "A font created for inscriptions on stone, based on gothic letters.") + (description + "A font created for inscriptions on stone, based on gothic letters.") + (license license:silofl1.1))) + +;;; font-medieval-sharp.scm ends here -- cgit v1.2.3