From f0f95c3a9478c38eb7cba1b9ffb0a9e9396e8034 Mon Sep 17 00:00:00 2001 From: Sughosha Date: Sat, 15 Oct 2022 15:03:57 +0200 Subject: [PATCH 2/4] gnu: Add font-entypo * gnu/packages/fonts.scm (font-entypo): New variable. --- gnu/packages/fonts.scm | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/gnu/packages/fonts.scm b/gnu/packages/fonts.scm index 2d653abf32..639d2fa2b9 100644 --- a/gnu/packages/fonts.scm +++ b/gnu/packages/fonts.scm @@ -2882,3 +2882,27 @@ (define-public font-chiron-hei-hk Kong variant of Adobe’s Source Han Sans. The font aims at providing a modern, region-agnostic glyph set adopting the “modern” glyph style that is similar to prevalent typefaces in Traditional Chinese regions."))) + +(define-public font-entypo + (let ((commit "f94e077449daa87321aa0df5643889460ba8291b") + (revision "117")) + (package + (name "font-entypo") + (version (git-version "0" revision commit)) + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/danielbruce/entypo") + (commit commit))) + (sha256 + (base32 + "0kgy2ia15q93ksh6kbj8p5n44mmmax95w6a5byimbvcqajmvv7m6")))) + (build-system font-build-system) + (home-page "https://entypo.com") + (synopsis "Entypo font") + (description + "Entypo font is a pictogram suite.") + ;; Icons are distributed under CC-BY-SA 3.0 and fonts are distributed + ;; under SIL OFL. + (license (list license:cc-by-sa3.0 license:silofl1.1))))) -- 2.38.0