(define-module (packages font-scientifica) #:use-module ((guix licenses) #:prefix license:) #:use-module (gnu packages) #:use-module (guix packages) #:use-module (gnu packages autotools) #:use-module (guix gexp) #:use-module (guix build-system font) #:use-module (guix download) #:export (font-scientifica)) ;;; Commentary: ;;; provides the scientifica font ;;; Code: (define font-scientifica ;; Upstream doesn't provide any version numbers. It may be desirable to ;; mirror this elsewhere to avoid suddenly losing the current source file. (package (name "font-medieval-sharp") (version "v2.3") (source (origin (method url-fetch) (uri "https://github.com/oppiliappan/scientifica/archive/refs/tags/v2.3.zip") (sha256 (base32 "https://github.com/oppiliappan/scientifica/archive/refs/tags/v2.3.zip1xpmkhy80zr7l1dpcwfivd9nw7y7q9bvgk3ambirr5ip21h4qmz5")))) (build-system font-build-system) (home-page "https://github.com/oppiliappan/scientifica") (synopsis "tall, condensed, bitmap font for geeks.") (description "tall, condensed, bitmap font for geeks.") (license license:silofl1.1))) ;;; font-scientifica.scm ends here