diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2021-06-06 16:15:29 +0200 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2021-06-06 16:19:52 +0200 |
commit | db6ff6da1588a84bdc02dfc8eccd59a885b46fde (patch) | |
tree | b827568c9c20287e6137fec9e50113d570c5e635 /gnu | |
parent | b6affc5c0466e801224db4400bb62ccc26cd5346 (diff) | |
download | guix-db6ff6da1588a84bdc02dfc8eccd59a885b46fde.tar guix-db6ff6da1588a84bdc02dfc8eccd59a885b46fde.tar.gz |
gnu: xf86-input-libinput: Fix licence information.
* gnu/packages/xorg.scm (xf86-input-libinput)[license]: This package is
almost exclusively expat, with a single x11 file that's not installed.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/xorg.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gnu/packages/xorg.scm b/gnu/packages/xorg.scm index db058c697b..8ab77d521d 100644 --- a/gnu/packages/xorg.scm +++ b/gnu/packages/xorg.scm @@ -2555,7 +2555,8 @@ including most mice, keyboards, tablets and touchscreens.") "xf86-input-libinput is an input driver for the Xorg X server based on libinput. It is a thin wrapper around libinput, so while it does provide all features that libinput supports it does little beyond.") - (license license:x11))) + (license (list license:x11 ; only install-sh + license:expat)))) ; everything else (define-public xf86-input-joystick (package |