guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

02/04: gnu: weston: Fix package inputs.


From: guix-commits
Subject: 02/04: gnu: weston: Fix package inputs.
Date: Sun, 25 Jul 2021 02:14:59 -0400 (EDT)

raghavgururajan pushed a commit to branch master
in repository guix.

commit e0fc0913195a9e79dafc6075764132126fbd7d9c
Author: Raghav Gururajan <rg@raghavgururajan.name>
AuthorDate: Tue Jul 20 09:39:54 2021 -0400

    gnu: weston: Fix package inputs.
    
    The newly added inputs are referenced by the package but was missing in
    the package definition. Some of these inputs might have been used
    by the package indirectly via propagation from other inputs. The moved
    inputs are referenced in pkg-config files.
    
    * gnu/packages/freedesktop.scm (weston)[inputs]: Add glib, libdrm,
    libpng, libx11 and libxcb. Move libxkbcommon and wayland to ...
    [propagated-inputs]: ... here. Add pixman.
---
 gnu/packages/freedesktop.scm | 11 +++++++++--
 1 file changed, 9 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/freedesktop.scm b/gnu/packages/freedesktop.scm
index baebb0a..4cea482 100644
--- a/gnu/packages/freedesktop.scm
+++ b/gnu/packages/freedesktop.scm
@@ -1057,24 +1057,31 @@ applications, X servers (rootless or fullscreen) or 
other display servers.")
        ("colord" ,colord)
        ("dbus" ,dbus)
        ("elogind" ,elogind)
+       ("glib" ,glib)
        ("lcms" ,lcms)
+       ("libdrm" ,libdrm)
        ("libevdev" ,libevdev)
        ("libinput" ,libinput-minimal)
        ("libjpeg" ,libjpeg-turbo)
+       ("libpng" ,libpng)
        ("libunwind" ,libunwind)
        ("libva" ,libva)
        ("libwebp" ,libwebp)
+       ("libx11" ,libx11)
+       ("libxcb" ,libxcb)
        ("libxcursor" ,libxcursor)
-       ("libxkbcommon" ,libxkbcommon)
        ("libxml2" ,libxml2)
        ("mesa" ,mesa)
        ("mtdev" ,mtdev)
        ("linux-pam" ,linux-pam)
        ("pango" ,pango)
        ("pipewire" ,pipewire)
-       ("wayland" ,wayland)
        ("wayland-protocols" ,wayland-protocols)
        ("xorg-server-xwayland" ,xorg-server-xwayland)))
+    (propagated-inputs
+     `(("libxkbcommon" ,libxkbcommon)
+       ("pixman" ,pixman)
+       ("wayland" ,wayland)))
     (arguments
      `(#:configure-flags
        (list



reply via email to

[Prev in Thread] Current Thread [Next in Thread]