diff options
author | Gabriel Hondet <gabrielhondet@gmail.com> | 2018-12-23 09:43:18 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2018-12-24 16:20:32 +0100 |
commit | 3c5e13642ccc6db31ae8a017ea3076e63966ccd3 (patch) | |
tree | 52136a6f6b68ecf18894e6470d3559b5ca8b872e /gnu | |
parent | 311462f642dd87ca488bf9af180b2c609ea6e788 (diff) | |
download | patches-3c5e13642ccc6db31ae8a017ea3076e63966ccd3.tar patches-3c5e13642ccc6db31ae8a017ea3076e63966ccd3.tar.gz |
gnu: Add font-mononoki.
* gnu/packages/fonts.scm (font-mononoki): New variable.
Co-authored-by: Ludovic Courtès <ludo@gnu.org>
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/fonts.scm | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/gnu/packages/fonts.scm b/gnu/packages/fonts.scm index b0cb78c5cb..88315008bd 100644 --- a/gnu/packages/fonts.scm +++ b/gnu/packages/fonts.scm @@ -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 @@ reproduction and display environments. This package provides only TrueType 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))) |