From 5935d9f1c2c2850dd27cd52a8da65838272938b7 Mon Sep 17 00:00:00 2001 From: Sughosha Date: Sat, 15 Oct 2022 15:54:10 +0200 Subject: [PATCH 2/4] gnu: Add font-entypo * gnu/packages/music.scm (font-entypo): New variable. Modified-by: Maxime Devos --- gnu/packages/fonts.scm | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/gnu/packages/fonts.scm b/gnu/packages/fonts.scm index 39242f0bec..f88f4cd511 100644 --- a/gnu/packages/fonts.scm +++ b/gnu/packages/fonts.scm @@ -2817,3 +2817,31 @@ (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."))) + +;; TODO: once we , build the font +;; from source. +(define-public font-entypo + (let ((commit "f94e077449daa87321aa0df5643889460ba8291b") + (revision "0")) + (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 "Pictogram font") + (description + "Entypo is a special-purpose font, consisting solely of pictograms.") + ;; According to the README.md, icons are distributed under + ;; CC-BY-SA 3.0 and fonts are distributed under SIL OFL. + ;; As the icons are part of the font, the exact distinction it a bit + ;; unclear, but it appears to be free. + (license (list license:cc-by-sa3.0 license:silofl1.1))))) -- 2.38.0