mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-31 23:06:59 +01:00
gnu: font-cantarell: Update package definition.
* gnu/packages/fonts.scm (font-cantarell): Rename package. [name]: Change from font-abattis-cantarell to font-cantarell. (font-abattis-cantarell): New variable for deprecated-package font-abattis-cantarell. Signed-off-by: Danny Milosavljevic <dannym@scratchpost.org>
This commit is contained in:
parent
a666e2f5fe
commit
c0e9bd158b
1 changed files with 16 additions and 11 deletions
|
@ -199,25 +199,30 @@ (define-public font-bitstream-vera
|
|||
|
||||
(define-public font-cantarell
|
||||
(package
|
||||
(name "font-abattis-cantarell")
|
||||
(name "font-cantarell")
|
||||
(version "0.201")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (string-append "mirror://gnome/sources/cantarell-fonts/"
|
||||
(version-major+minor version)
|
||||
"/cantarell-fonts-" version ".tar.xz"))
|
||||
(sha256
|
||||
(base32
|
||||
"0qwqmkczqy09fdj8l11nr841ks0dwsydqg55qyms12m4yvjn87xn"))))
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri
|
||||
(string-append "mirror://gnome/sources/cantarell-fonts/"
|
||||
(version-major+minor version)
|
||||
"/cantarell-fonts-" version ".tar.xz"))
|
||||
(sha256
|
||||
(base32
|
||||
"0qwqmkczqy09fdj8l11nr841ks0dwsydqg55qyms12m4yvjn87xn"))))
|
||||
(build-system meson-build-system)
|
||||
(native-inputs
|
||||
`(("gettext" ,gettext-minimal))) ; for msgfmt
|
||||
(home-page "https://wiki.gnome.org/Projects/CantarellFonts")
|
||||
`(("gettext" ,gettext-minimal)))
|
||||
(synopsis "Cantarell sans-serif typeface")
|
||||
(description "The Cantarell font family is a contemporary Humanist
|
||||
sans-serif designed for on-screen reading. It is used by GNOME@tie{}3.")
|
||||
(home-page "https://wiki.gnome.org/Projects/CantarellFonts")
|
||||
(license license:silofl1.1)))
|
||||
|
||||
(define-public font-abattis-cantarell
|
||||
(deprecated-package "font-abattis-cantarell" font-cantarell))
|
||||
|
||||
(define-public font-lato
|
||||
(package
|
||||
(name "font-lato")
|
||||
|
|
Loading…
Reference in a new issue