summaryrefslogtreecommitdiff
path: root/.config/guix/modules/packages/font-scientifica.scm
blob: 2a48e058dfb5bc0e56f301d761cd7d25ca7b54f5 (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
29
30
31
32
33
34
(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