blob: 0a44a786455cd945ab5a7a6e46a4fee494970cc2 (
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
|
(define-module (elenq graphics)
#:use-module ((guix licenses) #:prefix license:)
#:use-module (guix build-system font)
#:use-module (guix gexp)
#:use-module (guix git-download)
#:use-module (guix packages))
(define-public font-armata
(package
(name "font-armata")
(version "0.9.7")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/ekaitz-zarraga/font-armata/")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32 "1pdlydanpay93pgkbpawii11j62m643pqkv6i6crvia198i9fnrd"))))
(build-system font-build-system)
(home-page "https://fontlibrary.org/en/font/armata")
(synopsis "Armata Font")
(description
"Armata is a new Sans Serif font by Jasper @ Cannot Into Space
Fonts. It is named after the new Russian T-14 Armata Main Battle Tank.")
(license license:silofl1.1)))
(define-public font-b612-better
(let ((revision "1")
(commit "ab287a9876083f29d9bf83e4b71a60e79d8b657e"))
(package
(name "font-b612-better")
(version (git-version "0.0.0" revision commit))
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/ekaitz-zarraga/font-b612-better/")
(commit commit)))
(sha256
(base32 "11r2blm2v82rsrl0jypi8x9r8im14q1gx57jhzdby4dia6jslsjv"))))
(build-system font-build-system)
(home-page "https://github.com/ekaitz-zarraga/font-b612-better")
(synopsis "B612 Font (improved)")
(description
"Fork of the B612 font developed by AIRBUS with a few
improvements:
@itemize
@item Proper Monospace support
@item Slashed Zero by default
@item Cleaned source blob files that required proprietary software.
@end itemize")
(license license:silofl1.1))))
|