diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2019-05-09 00:55:28 +0200 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2019-05-09 01:14:55 +0200 |
commit | a6592732cfcc26d0f7ebbc05a3f63a3d72101a79 (patch) | |
tree | 4baaec646ff2a03283fd4e22a3b9091b6ec84666 | |
parent | 5b26635893ce6d86ce628e0a65a50848642bcdfe (diff) | |
download | patches-a6592732cfcc26d0f7ebbc05a3f63a3d72101a79.tar patches-a6592732cfcc26d0f7ebbc05a3f63a3d72101a79.tar.gz |
gnu: usbutils: Fix broken lsusb.py.
* gnu/packages/linux.scm (usbutils)[inputs]: Add python.
-rw-r--r-- | gnu/packages/linux.scm | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm index 2a07188bb1..d7d9b46fae 100644 --- a/gnu/packages/linux.scm +++ b/gnu/packages/linux.scm @@ -837,8 +837,9 @@ slabtop, and skill.") (("^\\./configure.*") "")) #t))))) (inputs - `(("libusb" ,libusb) - ("eudev" ,eudev))) + `(("eudev" ,eudev) + ("libusb" ,libusb) + ("python" ,python))) (native-inputs `(("autoconf" ,autoconf) ("automake" ,automake) |