diff options
author | Marius Bakke <mbakke@fastmail.com> | 2019-06-20 23:38:56 +0200 |
---|---|---|
committer | Marius Bakke <mbakke@fastmail.com> | 2019-06-20 23:38:56 +0200 |
commit | 6cb1ef9ea28ee14b3bb5442e8af1f54c27802f09 (patch) | |
tree | c2c35f733d250f86eb052d174fcb1c24a54fea79 /gnu/packages/fonts.scm | |
parent | 20e4ee1e3b7044d9f64de02c6237b00e5a57da35 (diff) | |
parent | 010689e7067df1288af29176f4a8639de816b1ef (diff) | |
download | patches-6cb1ef9ea28ee14b3bb5442e8af1f54c27802f09.tar patches-6cb1ef9ea28ee14b3bb5442e8af1f54c27802f09.tar.gz |
Merge branch 'staging' into core-updates
Diffstat (limited to 'gnu/packages/fonts.scm')
-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 0ac0b7b207..c24e58de0d 100644 --- a/gnu/packages/fonts.scm +++ b/gnu/packages/fonts.scm @@ -613,6 +613,28 @@ character set, with support for most Western and Central European Latin-based languages, plus Greek and Cyrillic.") (license license:silofl1.1))) +(define-public font-anonymous-pro-minus + (package + (inherit font-anonymous-pro) + (name "font-anonymous-pro-minus") + ;; The -Minus variant doesn't necessarily track the regular version above. + (version "1.003") + (source + (origin + (method url-fetch) + (uri (string-append "https://www.marksimonson.com/assets/content/fonts/" + "AnonymousProMinus-" version ".zip")) + (sha256 + (base32 "1p2n91jja37d2cshp5pjwld9lq0v7gnpk7ywwn2blq7k46q6vq38")))) + (synopsis "Fixed-width fonts designed with coding in mind, without bitmaps") + (description "Anonymous Pro is a family of four fixed-width fonts designed +with coding in mind. Anonymous Pro features an international, Unicode-based +character set, with support for most Western and Central European Latin-based +languages, plus Greek and Cyrillic. + +Anonymous Pro Minus is identical to Anonymous Pro, minus its embedded bitmaps +for use at smaller text sizes"))) + (define-public font-gnu-unifont (package (name "font-gnu-unifont") |