diff options
author | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2021-12-13 16:29:21 -0500 |
---|---|---|
committer | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2021-12-13 16:29:21 -0500 |
commit | 6dffced09ecda024e0884e352778c221ad066fd6 (patch) | |
tree | 1707e8d8df4d9c47317a39ab6abbfc2ca66a6c29 /gnu/packages/openkinect.scm | |
parent | b603554ed044638dd40b6863d5dada59eefe03b8 (diff) | |
parent | e3196755e60ba7f1ed9d432e73f26a85e0c8893c (diff) |
Merge branch 'core-updates-frozen' into 'master'.
At last!
Diffstat (limited to 'gnu/packages/openkinect.scm')
-rw-r--r-- | gnu/packages/openkinect.scm | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/gnu/packages/openkinect.scm b/gnu/packages/openkinect.scm index 89e6c69cfc..e760f18367 100644 --- a/gnu/packages/openkinect.scm +++ b/gnu/packages/openkinect.scm @@ -64,9 +64,9 @@ (string-append rules-out "51-kinect.rules")) #t)))))) (native-inputs - `(("pkg-config" ,pkg-config))) + (list pkg-config)) (inputs - `(("libusb" ,libusb))) + (list libusb)) (synopsis "Drivers and libraries for the Xbox Kinect device") (description "libfreenect is a userspace driver for the Microsoft Kinect. It supports: RGB and Depth Images, Motors, Accelerometer, LED and Audio.") @@ -106,8 +106,7 @@ It supports: RGB and Depth Images, Motors, Accelerometer, LED and Audio.") (inherit libfreenect) (name "libfreenect-opencv") (inputs - `(("libfreenect" ,libfreenect) - ("opencv" ,opencv))) + (list libfreenect opencv)) (arguments `(#:tests? #f ; package has no tests #:configure-flags '("-DBUILD_EXAMPLES=OFF" @@ -124,12 +123,11 @@ library"))) (inherit libfreenect) (name "python-libfreenect") (native-inputs - `(("python-cython" ,python-cython))) + (list python-cython)) (inputs - `(("libfreenect" ,libfreenect))) + (list libfreenect)) (propagated-inputs - `(("python" ,python) - ("python-numpy" ,python-numpy))) + (list python python-numpy)) (arguments `(#:tests? #f ; package has no tests #:configure-flags '("-DBUILD_EXAMPLES=OFF" |