blob: 815312538733ca73e9c6a54f6e8cc447a26dedde (
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
|
(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)))
|