(define-module (font-rsms-inter-package) #:use-module (guix) #:use-module (guix build-system font) #:use-module ((guix licenses) #:prefix license:)) (define-public font-rsms-inter (package (name "font-rsms-inter") (version "4.0") (source (origin (method url-fetch) (uri (string-append "https://github.com/rsms/inter/releases/download/" "v" version "/Inter-" version ".zip")) (file-name (string-append name "-" version ".zip")) (sha256 (base32 "196iyyvsq58z21x4r4b0qjvfki3apnnq3dvw5884z8318mfhm5zz")))) (build-system font-build-system) (home-page "https://rsms.me/inter") (synopsis "The Inter font family") (description "Inter is a typeface carefully crafted & designed for computer screens. Inter features a tall x-height to aid in readability of mixed-case and lower-case text. Inter is a variable font with several OpenType features, like contextual alternates that adjusts punctuation depending on the shape of surrounding glyphs, slashed zero for when you need to disambiguate \"0\" from \"o\", tabular numbers, etc.") (license license:silofl1.1)))