summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbd <bdunahu@operationnull.com>2025-12-10 19:40:31 -0500
committerbd <bdunahu@operationnull.com>2025-12-10 19:40:31 -0500
commite4a35be74de1e405ecdde47c16ccfe567bfb0494 (patch)
treea0809587232c77b9381e292e02aae8d8b9136fd2
parent99a955c3fcf4b5e770f5e6d3a8d50c343f49ee4a (diff)
gnu: Add font-medieval-sharp.
* modules/tanelorn/packages/fonts.scm (font-medieval-sharp): New variable. * README: Add font-medieval-sharp.
-rw-r--r--README4
-rw-r--r--modules/tanelorn/packages/fonts.scm32
2 files changed, 36 insertions, 0 deletions
diff --git a/README b/README
index bdab270..0247d22 100644
--- a/README
+++ b/README
@@ -19,4 +19,8 @@ The packages and services found here are optionally free for anyone to use, unde
- eww (x11 and wayland variants)
+- *Fonts*:
+
+ - font-medieval-sharp
+
** Services
diff --git a/modules/tanelorn/packages/fonts.scm b/modules/tanelorn/packages/fonts.scm
new file mode 100644
index 0000000..eec7dc0
--- /dev/null
+++ b/modules/tanelorn/packages/fonts.scm
@@ -0,0 +1,32 @@
+;;; Copyright © 2025 bdunahu <bdunahu@operationnull.com>
+;;;
+;;; SPDX-License-Identifier: GPL-3.0-or-later
+
+(define-module (tanelorn packages fonts)
+ #: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))
+
+(define-public font-medieval-sharp
+ (package
+ (name "font-medieval-sharp")
+ (version "20200401")
+ (source (origin
+ (method url-fetch)
+ (uri (string-append
+ "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 "Font based on gothic letters")
+ (description
+ "Medieval Sharp is a font created for inscriptions on stone, based on
+gothic letters.")
+ (license license:silofl1.1)))