diff options
| -rw-r--r-- | gnu/packages/fontutils.scm | 31 |
1 files changed, 17 insertions, 14 deletions
diff --git a/gnu/packages/fontutils.scm b/gnu/packages/fontutils.scm index 3b21d598e13..2e6e4ec972c 100644 --- a/gnu/packages/fontutils.scm +++ b/gnu/packages/fontutils.scm | |||
| @@ -1019,23 +1019,26 @@ can be used to hint PostScript fonts. A Python wrapper is also included.") | |||
| 1019 | (define-public python-sfdlib | 1019 | (define-public python-sfdlib |
| 1020 | (package | 1020 | (package |
| 1021 | (name "python-sfdlib") | 1021 | (name "python-sfdlib") |
| 1022 | (version "1.2.3") | 1022 | (version "1.2.5") |
| 1023 | (source (origin | 1023 | (source |
| 1024 | (method git-fetch) | 1024 | (origin |
| 1025 | (uri (git-reference | 1025 | (method git-fetch) |
| 1026 | (url "https://github.com/aliftype/sfdLib") | 1026 | (uri (git-reference |
| 1027 | (commit (string-append "v" version)))) | 1027 | (url "https://github.com/aliftype/sfdLib") |
| 1028 | (file-name (git-file-name name version)) | 1028 | (commit (string-append "v" version)))) |
| 1029 | (sha256 | 1029 | (file-name (git-file-name name version)) |
| 1030 | (base32 | 1030 | (sha256 |
| 1031 | "1q61km32i1h3cmn8nazcgsbzpm8q2nxp3kq3glqgfgvlxr1s3brm")))) | 1031 | (base32 "00vss0pv7y041rqjlbq8si7319w0mzlkp3ckw150mmxzsrx0m58c")))) |
| 1032 | (build-system python-build-system) | 1032 | (build-system pyproject-build-system) |
| 1033 | (arguments (list #:tests? #f)) ; No tests upstream. | ||
| 1034 | (native-inputs (list python-setuptools)) | ||
| 1033 | (propagated-inputs (list python-ufolib2)) | 1035 | (propagated-inputs (list python-ufolib2)) |
| 1034 | (home-page "https://github.com/aliftype/sfdLib") | 1036 | (home-page "https://github.com/aliftype/sfdLib") |
| 1035 | (synopsis "Simple SFD to UFO converter") | 1037 | (synopsis "Simple SFD to UFO converter") |
| 1036 | (description "This package provides the @command{sfd2ufo} command, a | 1038 | (description |
| 1037 | converter from FontForge’s @acronym{SFD, Spline Font Database} fonts to | 1039 | "This package provides the @command{sfd2ufo} command, a converter from |
| 1038 | @acronym{UFO, Unified Font Object} fonts.") | 1040 | FontForge’s @acronym{SFD, Spline Font Database} fonts to @acronym{UFO, Unified |
| 1041 | Font Object} fonts.") | ||
| 1039 | (license license:bsd-3))) | 1042 | (license license:bsd-3))) |
| 1040 | 1043 | ||
| 1041 | (define-public python-skia-pathops | 1044 | (define-public python-skia-pathops |
