(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))))