(use-modules (guix packages) (guix download) (guix build-system font) ((guix licenses) #:prefix license:)) (define-public font-scientifica (package (name "font-scientifica") (version "2.3") (source (origin (method url-fetch) (uri (string-append "https://github.com/nerdypepper/scientifica/ releases/download/v" version "/scientifica.tar")) (sha256 (base32 "0zwa3s75lvbky2vn73i1fmxa37hi3zfm7f6wfpqwcip8l1lpi1gh")))) (build-system font-build-system) (home-page "https://github.com/nerdypepper/scientifica") (synopsis "Tall and condensed bitmap font for geeks.") (description "scientifica is largely based on creep, with a number of minor tweaks to improve readability (a matter of taste of course). Most characters are just 4px wide, which is brilliant for low dpi(90-120) displays.") (license license:silofl1.1))) font-scientifica