mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 23:46:13 -05:00
gnu: Add font-mononoki.
* gnu/packages/fonts.scm (font-mononoki): New variable. Co-authored-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
parent
311462f642
commit
3c5e13642c
1 changed files with 22 additions and 0 deletions
|
@ -22,6 +22,7 @@
|
|||
;;; Copyright © 2017, 2018 Arun Isaac <arunisaac@systemreboot.net>
|
||||
;;; Copyright © 2017 Mohammed Sadiq <sadiq@sadiqpk.org>
|
||||
;;; Copyright © 2018 Charlie Ritter <chewzerita@posteo.net>
|
||||
;;; Copyright © 2018 Gabriel Hondet <gabrielhondet@gmail.com>
|
||||
;;;
|
||||
;;; This file is part of GNU Guix.
|
||||
;;;
|
||||
|
@ -1351,3 +1352,24 @@ (define-public font-sil-charis
|
|||
files (TTF).")
|
||||
(home-page "https://software.sil.org/charis/")
|
||||
(license license:silofl1.1)))
|
||||
|
||||
(define-public font-mononoki
|
||||
(package
|
||||
(name "font-mononoki")
|
||||
(version "1.2")
|
||||
(source (origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/madmalik/mononoki/")
|
||||
(commit version)))
|
||||
(sha256
|
||||
(base32
|
||||
"1rkzyxn30rn8qv2h2xz324j7q15hzg2lci8790a7cdl1dfgic4xi"))
|
||||
(file-name (git-file-name name version))))
|
||||
(build-system font-build-system)
|
||||
(synopsis "Font for programming and code review")
|
||||
(description
|
||||
"Mononoki is a typeface by Matthias Tellen, created to enhance code
|
||||
formatting.")
|
||||
(home-page "https://madmalik.github.io/mononoki/")
|
||||
(license license:silofl1.1)))
|
||||
|
|
Loading…
Reference in a new issue