diff options
author | Hilton Chain <hako@ultrarare.space> | 2023-08-25 16:53:33 +0800 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2024-08-31 10:42:24 +0200 |
commit | e051f1305c801d2db0009595c610c897b03cb7c0 (patch) | |
tree | a9ecc336858baf9c1852f240aa0df0ceca8eb7eb | |
parent | 058a47af241b73905d9c53eadf10136d7bd20d25 (diff) | |
download | guix-e051f1305c801d2db0009595c610c897b03cb7c0.tar.gz guix-e051f1305c801d2db0009595c610c897b03cb7c0.zip |
gnu: libinput: Remove input labels.
* gnu/packages/freedesktop.scm (libinput)[propagated-inputs]: Remove input
labels.
Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com>
-rw-r--r-- | gnu/packages/freedesktop.scm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gnu/packages/freedesktop.scm b/gnu/packages/freedesktop.scm index aa66ae05d3..a94f36e4ee 100644 --- a/gnu/packages/freedesktop.scm +++ b/gnu/packages/freedesktop.scm @@ -712,8 +712,8 @@ freedesktop.org project.") (list check) '()))) (propagated-inputs - `(;; libinput.h requires <libudev.h>, so propagate it. - ("udev" ,eudev))) + ;; libinput.h requires <libudev.h>, so propagate it. + (list eudev)) (home-page "https://www.freedesktop.org/wiki/Software/libinput/") (synopsis "Input devices handling library") (description |