blob: 732cc91dc326e7a9aeb964c058251c6c076cea50 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
|
;;; 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-terminus-ttf
(package
(name "font-terminus-ttf")
(version "4.49.3")
(source (origin
(method url-fetch)
(uri "https://files.ax86.net/terminus-ttf/files/latest.zip")
(sha256
(base32
"0xvm4mcf0gx7df35swqwxb7a5h3z0gf6dkg6zy84b6nrk0fr5b8f"))))
(build-system font-build-system)
(home-page "https://files.ax86.net/terminus-ttf")
(synopsis "Simple ttf programming font based on Terminus")
(description
"Terminus TTF is a TrueType version of Terminus Font, a fixed-width bitmap font optimized for long work with computers.")
(license license:silofl1.1)))
(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)))
(define-public font-runa-mono
(package
(name "font-runa-mono")
(version "20151014")
(source (origin
(method url-fetch)
(uri
(string-append
"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 "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)))
|