gnu: libxscrnsaver: Propagate libx11 and libxext, as per pkg-config file.

* gnu/packages/xorg.scm (libxscrnsaver)[inputs]: Move libx11 and libxext to ...
[propagated-inputs]: ... here.
This commit is contained in:
Raghav Gururajan 2021-07-18 21:29:01 -04:00
parent 2fbffcf575
commit 53e445c463
No known key found for this signature in database
GPG key ID: 5F5816647F8BE551

View file

@ -1517,11 +1517,10 @@ (define-public libxscrnsaver
(build-system gnu-build-system) (build-system gnu-build-system)
(arguments (arguments
'(#:configure-flags '("--disable-static"))) '(#:configure-flags '("--disable-static")))
(inputs
`(("libxext" ,libxext)
("libx11" ,libx11)))
(propagated-inputs (propagated-inputs
`(("xorgproto" ,xorgproto))) `(("libx11" ,libx11)
("libxext" ,libxext)
("xorgproto" ,xorgproto)))
(native-inputs (native-inputs
`(("pkg-config" ,pkg-config))) `(("pkg-config" ,pkg-config)))
(home-page "https://www.x.org/wiki/") (home-page "https://www.x.org/wiki/")