gnu: freetype: Avoid license/package name clash.

* gnu/packages/freetype.scm: Use a renamer for (guix licenses), to avoid
  a name clash.
This commit is contained in:
Ludovic Courtès 2013-01-19 22:31:17 +01:00
parent 943f33a326
commit 79c398a20c
1 changed files with 2 additions and 2 deletions

View File

@ -18,7 +18,7 @@
(define-module (gnu packages freetype) (define-module (gnu packages freetype)
#:use-module (gnu packages) #:use-module (gnu packages)
#:use-module (guix licenses) #:use-module ((guix licenses) #:renamer (symbol-prefix-proc 'license:))
#:use-module (guix packages) #:use-module (guix packages)
#:use-module (guix download) #:use-module (guix download)
#:use-module (guix build-system gnu)) #:use-module (guix build-system gnu))
@ -42,5 +42,5 @@ contents of font files. It provides a uniform interface to access font files.
It supports both bitmap and scalable formats, including TrueType, OpenType, It supports both bitmap and scalable formats, including TrueType, OpenType,
Type1, CID, CFF, Windows FON/FNT, X11 PCF, and others. It supports high-speed Type1, CID, CFF, Windows FON/FNT, X11 PCF, and others. It supports high-speed
anti-aliased glyph bitmap generation with 256 gray levels.") anti-aliased glyph bitmap generation with 256 gray levels.")
(license freetype) ; some files have other licenses (license license:freetype) ; some files have other licenses
(home-page "http://www.freetype.org/"))) (home-page "http://www.freetype.org/")))