diff options
author | Damien Cassou <damien@cassou.me> | 2020-02-09 20:56:58 +0100 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2020-02-10 00:13:56 +0100 |
commit | 200514cd8fe1797d7653386a7b1ed1106c61164e (patch) | |
tree | 4ad2441cc83f7b920bbd770f53302a047e40f55c | |
parent | 1c8b70c875843b98cd0ddac366f6a9272d335a46 (diff) | |
download | patches-200514cd8fe1797d7653386a7b1ed1106c61164e.tar patches-200514cd8fe1797d7653386a7b1ed1106c61164e.tar.gz |
gnu: Add font-jetbrains-mono.
* gnu/packages/fonts.scm (font-jetbrains-mono): New variable.
-rw-r--r-- | gnu/packages/fonts.scm | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/gnu/packages/fonts.scm b/gnu/packages/fonts.scm index 358c72f07a..2ec1689d6f 100644 --- a/gnu/packages/fonts.scm +++ b/gnu/packages/fonts.scm @@ -1563,3 +1563,24 @@ have been designed to be very distinguishable from each other.") displays (7SEG, 14SEG). DSEG includes the roman alphabet and symbol glyphs. This package provides the TrueType fonts.") (license license:silofl1.1))) + +(define-public font-jetbrains-mono + (package + (name "font-jetbrains-mono") + (version "1.0.2") + (source + (origin + (method url-fetch) + (uri + (string-append "https://download.jetbrains.com/fonts/" + "JetBrainsMono-" version ".zip")) + (sha256 + (base32 "0qlp4902i1v6ni04b6gdip8rxw6wpkdk9w7dir1yn9an5mvbkyar")))) + (build-system font-build-system) + (home-page "https://www.jetbrains.com/lp/mono/") + (synopsis "Mono typeface for developers") + (description + "JetBrains Mono is a font family dedicated to developers. JetBrains +Mono’s typeface forms are simple and free from unnecessary details. Rendered +in small sizes, the text looks crisper.") + (license license:asl2.0))) |