From 7cc4a096ea565850fdb80dd8c5103fa3d0fe3ae2 Mon Sep 17 00:00:00 2001 From: bd Date: Fri, 7 Nov 2025 13:58:51 -0500 Subject: init --- bd/font-runa-mono.scm | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 bd/font-runa-mono.scm (limited to 'bd/font-runa-mono.scm') diff --git a/bd/font-runa-mono.scm b/bd/font-runa-mono.scm new file mode 100644 index 0000000..90ebddf --- /dev/null +++ b/bd/font-runa-mono.scm @@ -0,0 +1,34 @@ +(define-module (bd font-runa-mono) + #: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-runa-mono)) + +;;; Commentary: +;;; provides the runa-mono font +;;; Code: + +(define font-runa-mono + ;; 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-runa-mono") + (version "20151014") + (source (origin + (method url-fetch) + (uri "https://fontlibrary.org/assets/downloads/runa-mono/cd1ea272ab14c2f15d42b474db5573a1/runa-mono.zip") + (sha256 + (base32 + "14l5rhdrcw4p43qzv06jzl5bcbpg5n7ai6gf4bikq2ads3bxyi1m")))) + (build-system font-build-system) + (home-page "https://fontlibrary.org/en/font/runa-mono") + (synopsis "A font created to provide typography for runic characters.") + (description + "RunaMono is a free font project created mainly to provide typography for runic characters (Unicode: 16A0-16F8) and to map runic characters with standard latin alphabet.") + (license license:silofl1.1))) + +;;; font-runa-mono.scm ends here -- cgit v1.2.3