diff options
author | Vinicius Monego <monego@posteo.net> | 2021-07-11 14:15:10 +0000 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2021-07-12 16:00:20 +0300 |
commit | 4f013b8c8201452aac69221e2bc2f981c9c5026d (patch) | |
tree | bdf3e899ee5e7d561c6e216a68b568fe26285d82 /gnu | |
parent | e34f7dfcc3b7bc736c2e6c87726776fba131b31b (diff) | |
download | guix-4f013b8c8201452aac69221e2bc2f981c9c5026d.tar.gz |
gnu: libheif: Satisfy 'libheif.pc'.
* gnu/packages/image.scm (libheif)[inputs]: Move dav1d, libaom, libde265, x265 to ... [propagated-inputs]: ... here. Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/image.scm | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/gnu/packages/image.scm b/gnu/packages/image.scm index 1ca89d8e73..225a5c2d10 100644 --- a/gnu/packages/image.scm +++ b/gnu/packages/image.scm @@ -2186,13 +2186,15 @@ by AOM, including with alpha.") ("libtool" ,libtool) ("pkg-config" ,pkg-config))) (inputs - `(("dav1d" ,dav1d) - ("gdk-pixbuf" ,gdk-pixbuf) ;optional - ("libaom" ,libaom) - ("libde265" ,libde265) + `(("gdk-pixbuf" ,gdk-pixbuf) ;optional ("libjpeg" ,libjpeg-turbo) - ("libpng" ,libpng) - ("x265" ,x265))) + ("libpng" ,libpng))) + ;; Propagated to satisfy 'libheif.pc'. + (propagated-inputs + `(("dav1d" ,dav1d) + ("libaom" ,libaom) + ("libde265" ,libde265) + ("x265" ,x265))) (home-page "https://github.com/strukturag/libheif") (synopsis "HEIF and AVIF file format decoder and encoder") (description |