* gnu/packages/fonts.scm (feather): Add Feather iconfont by AT-UI --- gnu/packages/fonts.scm | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/gnu/packages/fonts.scm b/gnu/packages/fonts.scm index 63d1240d5c..262ca3adfa 100644 --- a/gnu/packages/fonts.scm +++ b/gnu/packages/fonts.scm @@ -42,6 +42,7 @@ ;;; Copyright © 2021 Sergiu Ivanov ;;; Copyright © 2021 Sarah Morgensen ;;; Copyright © 2021 Paul A. Patience +;;; Copyright © 2021 Wamm K. D. ;;; ;;; This file is part of GNU Guix. ;;; @@ -2288,3 +2289,21 @@ (define-public font-overpass Overpass includes proportional and monospace variants.") (license (list license:silofl1.1 license:lgpl2.1)))) + +(define-public font-atui-feather + (package + (name "font-atui-feather") + (version "0") + (source (origin + (method git-fetch) + (uri (git-reference + (commit "c51fe7cedbcf2cbf4f1b993cef5d8def612dec1d") + (url "https://github.com/AT-UI/feather-font/"))) + (sha256 (base32 "0hk12bjlsh0j6kd0sz3nwax259afdi6dxws4x88yz5ssxic1ng2j")))) + (build-system font-build-system) + (home-page "https://at-ui.github.io/feather-font/") + (synopsis "Iconfont version of Feather") + (description "Feather is a collection of simply beautiful icons. +Each icon is designed on a 24x24 grid with an emphasis on simplicity, consistency, +and readability. This package bundles those icons into a font.") + (license license:expat)))