diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2020-11-08 12:49:10 +0200 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2020-11-08 21:22:41 +0200 |
commit | c547efe7dc1aefda7b027b4d9b9890daee33f47e (patch) | |
tree | a6205c27aae3ee5dd4e7c4aa9d8f3188b29f40f2 | |
parent | 146b756659f6b9f1388be726e07332b985eafa0e (diff) | |
download | guix-c547efe7dc1aefda7b027b4d9b9890daee33f47e.tar.gz guix-c547efe7dc1aefda7b027b4d9b9890daee33f47e.zip |
gnu: woff-tools: End all phases in #t.
* gnu/packages/fontutils.scm (woff-tools)[arguments]: End custom
'install phase with #t.
-rw-r--r-- | gnu/packages/fontutils.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gnu/packages/fontutils.scm b/gnu/packages/fontutils.scm index d66dc4030e..89d5013a8b 100644 --- a/gnu/packages/fontutils.scm +++ b/gnu/packages/fontutils.scm @@ -170,7 +170,8 @@ scripts.") (let* ((out (assoc-ref outputs "out")) (bin (string-append out "/bin"))) (install-file "sfnt2woff" bin) - (install-file "woff2sfnt" bin))))))) + (install-file "woff2sfnt" bin)) + #t))))) (synopsis "Convert between OpenType and WOFF fonts") (description "This package provides two tools: |