diff options
author | Marius Bakke <mbakke@fastmail.com> | 2016-11-22 17:50:07 +0100 |
---|---|---|
committer | Marius Bakke <mbakke@fastmail.com> | 2016-11-22 17:50:07 +0100 |
commit | c70047f12d7e9d5138a1a217d0995882a8c5f459 (patch) | |
tree | cfded589e858dd2184f69a4f9ce3355993664771 /gnu/packages/fontutils.scm | |
parent | eec9c4a7c5615698254357b7fa0bcbeeb0137cbc (diff) | |
download | guix-c70047f12d7e9d5138a1a217d0995882a8c5f459.tar guix-c70047f12d7e9d5138a1a217d0995882a8c5f459.tar.gz |
gnu: freetype: Update to 2.7.
* gnu/packages/fontutils.scm (freetype): Update to 2.7.
[home-page]: Use HTTPS.
Diffstat (limited to 'gnu/packages/fontutils.scm')
-rw-r--r-- | gnu/packages/fontutils.scm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gnu/packages/fontutils.scm b/gnu/packages/fontutils.scm index 60cff2e330..1ffb427529 100644 --- a/gnu/packages/fontutils.scm +++ b/gnu/packages/fontutils.scm @@ -46,13 +46,13 @@ (define-public freetype (package (name "freetype") - (version "2.6.3") + (version "2.7") (source (origin (method url-fetch) (uri (string-append "mirror://savannah/freetype/freetype-" version ".tar.bz2")) (sha256 (base32 - "18k3b026762lmyrxfil5xv8qwnvj7hc12gz9bjqzbb12lmx707ip")))) + "0j3xgzn6pchgg1nm294vhx7cdicb7x3x8kwnlcm7v1alnzsm396n")))) (build-system gnu-build-system) (native-inputs `(("pkg-config" ,pkg-config))) @@ -69,7 +69,7 @@ It supports both bitmap and scalable formats, including TrueType, OpenType, Type1, CID, CFF, Windows FON/FNT, X11 PCF, and others. It supports high-speed anti-aliased glyph bitmap generation with 256 gray levels.") (license license:freetype) ; some files have other licenses - (home-page "http://www.freetype.org/"))) + (home-page "https://www.freetype.org/"))) (define-public ttfautohint (package |