[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
branch master updated: gnu: Add font-openmoji
From: |
guix-commits |
Subject: |
branch master updated: gnu: Add font-openmoji |
Date: |
Sat, 31 Oct 2020 16:23:11 -0400 |
This is an automated email from the git hooks/post-receive script.
cbaines pushed a commit to branch master
in repository guix.
The following commit(s) were added to refs/heads/master by this push:
new ce57400 gnu: Add font-openmoji
ce57400 is described below
commit ce5740043f6a12f4d0f1f9038c425f70dfa65577
Author: nixo <nicolo@nixo.xyz>
AuthorDate: Tue Oct 27 14:10:06 2020 +0100
gnu: Add font-openmoji
* gnu/packages/fonts.scm (font-openmoji): New variable.
Signed-off-by: Christopher Baines <mail@cbaines.net>
---
gnu/packages/fonts.scm | 25 +++++++++++++++++++++++++
1 file changed, 25 insertions(+)
diff --git a/gnu/packages/fonts.scm b/gnu/packages/fonts.scm
index f39c529..360a3ec 100644
--- a/gnu/packages/fonts.scm
+++ b/gnu/packages/fonts.scm
@@ -37,6 +37,7 @@
;;; Copyright © 2020 Zhu Zihao <all_but_last@163.com>
;;; Copyright © 2020 Simen Endsjø <simendsjo@gmail.com>
;;; Copyright © 2020 Tim Van den Langenbergh <tmt_vdl@gmx.com>
+;;; Copyright © 2020 Nicolò Balzarotti <nicolo@nixo.xyz>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -1430,6 +1431,30 @@ emphasis while still being readable.")
(define-public font-open-dyslexic
(deprecated-package "font-open-dyslexic" font-opendyslexic))
+(define-public font-openmoji
+ (package
+ (name "font-openmoji")
+ (version "12.4.0")
+ (source
+ (origin
+ (method url-fetch/zipbomb)
+ (uri
+ (string-append "https://github.com/hfg-gmuend/openmoji/"
+ "releases/download/" version
+ "/openmoji-font.zip"))
+ (sha256
+ (base32
+ "0wvvg5vnc950h8v23wfgjyi7rv89mgm5hqq6viqv0bxcc3azglxb"))))
+ (build-system font-build-system)
+ (native-inputs
+ `(("unzip" ,unzip)))
+ (home-page "https://openmoji.org")
+ (synopsis "Font for rendering emoji characters")
+ (description
+ "This package provides the OpenMoji font in both color and black
+variants.")
+ (license license:cc-by-sa4.0)))
+
(define-public font-dosis
(package
(name "font-dosis")
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- branch master updated: gnu: Add font-openmoji,
guix-commits <=