diff --git a/guix/build/font-build-system.scm b/guix/build/font-build-system.scm index cca1e93f0f9df723448389a433b718fa0e3e00d4..f2a646f6f4210a688be60e1e71e808cfa53a23e0 100644 --- a/guix/build/font-build-system.scm +++ b/guix/build/font-build-system.scm @@ -1,5 +1,6 @@ ;;; GNU Guix --- Functional package management for GNU ;;; Copyright © 2017 Arun Isaac <arunisaac@systemreboot.net> +;;; Copyright © 2017 Alex Griffin <a@ajgrf.com> ;;; ;;; This file is part of GNU Guix. ;;; @@ -50,9 +51,9 @@ (define* (install #:key outputs #:allow-other-keys) (source (getcwd)) (fonts (string-append out "/share/fonts"))) (for-each (cut install-file <> (string-append fonts "/truetype")) - (find-files source "\\.ttf$")) + (find-files source "\\.(ttf|ttc)$")) (for-each (cut install-file <> (string-append fonts "/opentype")) - (find-files source "\\.otf$")) + (find-files source "\\.(otf|otc)$")) #t)) (define %standard-phases