gnu: harfbuzz: Remove input labels.

...and reindent.

* gnu/packages/gtk.scm (harfbuzz)[inputs]: Remove labels.
This commit is contained in:
Marius Bakke 2022-06-27 19:43:41 +02:00
parent febdbf0111
commit 21a895a27b
No known key found for this signature in database
GPG key ID: A2A06DF2A33A54FA

View file

@ -243,41 +243,41 @@ output. Experimental backends include OpenGL, BeOS, OS/2, and DirectFB.")
(define-public harfbuzz (define-public harfbuzz
(package (package
(name "harfbuzz") (name "harfbuzz")
(version "4.3.0") (version "4.3.0")
(source (origin (source (origin
(method url-fetch) (method url-fetch)
(uri (string-append "https://github.com/harfbuzz/harfbuzz" (uri (string-append "https://github.com/harfbuzz/harfbuzz"
"/releases/download/" version "/harfbuzz-" "/releases/download/" version "/harfbuzz-"
version ".tar.xz")) version ".tar.xz"))
(sha256 (sha256
(base32 (base32
"0c5mzwgz43d37h75p4b6cgjg4v24jdd96i7gjpgxirn8qks2i5m4")))) "0c5mzwgz43d37h75p4b6cgjg4v24jdd96i7gjpgxirn8qks2i5m4"))))
(build-system gnu-build-system) (build-system gnu-build-system)
(outputs '("out" (outputs '("out"
"bin")) ; 160K, only hb-view depend on cairo "bin")) ;160K, only hb-view depend on cairo
(inputs (inputs
(list cairo)) (list cairo))
(propagated-inputs (propagated-inputs
;; There are all in the Requires or Requires.private field of '.pc'. ;; There are all in the Requires or Requires.private field of '.pc'.
(list glib graphite2 icu4c)) (list glib graphite2 icu4c))
(native-inputs (native-inputs
`(("glib:bin" ,glib "bin") ;for glib-mkenums (list `(,glib "bin") ;for glib-mkenums
("gobject-introspection" ,gobject-introspection) gobject-introspection
("pkg-config" ,pkg-config) pkg-config
("python" ,python-wrapper) python-wrapper
("which" ,which))) which))
(arguments (arguments
`(#:configure-flags `("--with-graphite2" `(#:configure-flags `("--with-graphite2"
"--with-gobject" "--with-gobject"
,(string-append ,(string-append
"--bindir=" (assoc-ref %outputs "bin") "/bin")))) "--bindir=" (assoc-ref %outputs "bin") "/bin"))))
(synopsis "OpenType text shaping engine") (synopsis "OpenType text shaping engine")
(description (description
"HarfBuzz is an OpenType text shaping engine.") "HarfBuzz is an OpenType text shaping engine.")
(license (license:x11-style "file://COPYING" (license (license:x11-style "file://COPYING"
"See 'COPYING' in the distribution.")) "See 'COPYING' in the distribution."))
(home-page "https://www.freedesktop.org/wiki/Software/HarfBuzz/"))) (home-page "https://www.freedesktop.org/wiki/Software/HarfBuzz/")))
(define-public libdatrie (define-public libdatrie
(package (package