gnu: Propagate necessary inputs for sdl-image.
* gnu/packages/sdl.scm (sdl-image): Propagate jpeg, png, and tiff libraries.
This commit is contained in:
parent
7560b00b1c
commit
586b6d4d45
|
@ -147,12 +147,17 @@ other supporting functions for SDL.")
|
||||||
(base32
|
(base32
|
||||||
"16an9slbb8ci7d89wakkmyfvp7c0cval8xw4hkg0842nhhlp540b"))))
|
"16an9slbb8ci7d89wakkmyfvp7c0cval8xw4hkg0842nhhlp540b"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
|
(native-inputs `(("pkg-config" ,pkg-config)))
|
||||||
;; FIXME: Add webp
|
;; FIXME: Add webp
|
||||||
(inputs `(("libpng" ,libpng)
|
;;
|
||||||
("libjpeg" ,libjpeg)
|
;; libjpeg, libpng, and libtiff are propagated inputs because the
|
||||||
("libtiff" ,libtiff)
|
;; SDL_image headers include the headers of these libraries. SDL is a
|
||||||
("pkg-config" ,pkg-config)))
|
;; propagated input because the pkg-config file refers to SDL's pkg-config
|
||||||
(propagated-inputs `(("sdl" ,sdl)))
|
;; file.
|
||||||
|
(propagated-inputs `(("sdl" ,sdl)
|
||||||
|
("libjpeg" ,libjpeg)
|
||||||
|
("libpng" ,libpng)
|
||||||
|
("libtiff" ,libtiff)))
|
||||||
(synopsis "SDL image loading library")
|
(synopsis "SDL image loading library")
|
||||||
(description "SDL_image is an image file loading library for SDL that
|
(description "SDL_image is an image file loading library for SDL that
|
||||||
supports the following formats: BMP, GIF, JPEG, LBM, PCX, PNG, PNM, TGA, TIFF,
|
supports the following formats: BMP, GIF, JPEG, LBM, PCX, PNG, PNM, TGA, TIFF,
|
||||||
|
|
Loading…
Reference in New Issue