gnu: Separate Python core packages from the rest.
[jackhill/guix/guix.git] / gnu / packages / libusb.scm
CommitLineData
233e7676
LC
1;;; GNU Guix --- Functional package management for GNU
2;;; Copyright © 2012 Nikita Karetnikov <nikita@karetnikov.org>
75be6b7c 3;;; Copyright © 2015 Andreas Enge <andreas@enge.fr>
e0477b73 4;;; Copyright © 2015 Andy Wingo <wingo@igalia.com>
18fe5ef1 5;;; Copyright © 2015, 2016, 2017 Ricardo Wurmus <rekado@elephly.net>
50637966 6;;; Copyright © 2016 Efraim Flashner <efraim@flashner.co.il>
d109b1e8 7;;; Copyright © 2016 Theodoros Foradis <theodoros@foradis.org>
05c88516 8;;; Copyright © 2017 Jonathan Brielmaier <jonathan.brielmaier@web.de>
721bdea5 9;;; Copyright © 2018 Tobias Geerinckx-Rice <me@tobias.gr>
7abe3826 10;;; Copyright © 2018 Vagrant Cascadian <vagrant@debian.org>
3b48f78c 11;;;
233e7676 12;;; This file is part of GNU Guix.
3b48f78c 13;;;
233e7676 14;;; GNU Guix is free software; you can redistribute it and/or modify it
3b48f78c
NK
15;;; under the terms of the GNU General Public License as published by
16;;; the Free Software Foundation; either version 3 of the License, or (at
17;;; your option) any later version.
18;;;
233e7676 19;;; GNU Guix is distributed in the hope that it will be useful, but
3b48f78c
NK
20;;; WITHOUT ANY WARRANTY; without even the implied warranty of
21;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22;;; GNU General Public License for more details.
23;;;
24;;; You should have received a copy of the GNU General Public License
233e7676 25;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
3b48f78c 26
1ffa7090 27(define-module (gnu packages libusb)
59a43334 28 #:use-module (gnu packages)
3b48f78c
NK
29 #:use-module (guix licenses)
30 #:use-module (guix packages)
e0477b73 31 #:use-module (guix utils)
3b48f78c 32 #:use-module (guix download)
18fe5ef1 33 #:use-module (guix git-download)
423b6840 34 #:use-module (guix build-system ant)
18fe5ef1 35 #:use-module (guix build-system cmake)
75be6b7c 36 #:use-module (guix build-system gnu)
3d3caf1f 37 #:use-module (guix build-system glib-or-gtk)
fac34dfe 38 #:use-module (guix build-system python)
3d74f12e 39 #:use-module (gnu packages autotools)
75be6b7c 40 #:use-module (gnu packages gnupg)
3d3caf1f 41 #:use-module (gnu packages gtk)
18fe5ef1 42 #:use-module (gnu packages java)
034e0d50 43 #:use-module (gnu packages linux)
3d3caf1f
RW
44 #:use-module (gnu packages mp3)
45 #:use-module (gnu packages pkg-config)
fac34dfe 46 #:use-module (gnu packages python)
44d10b1f 47 #:use-module (gnu packages python-xyz)
3d3caf1f 48 #:use-module (gnu packages xiph))
3b48f78c
NK
49
50(define-public libusb
51 (package
52 (name "libusb")
58ee8a94 53 (version "1.0.22")
3b48f78c
NK
54 (source
55 (origin
56 (method url-fetch)
57 (uri (string-append "mirror://sourceforge/libusb/libusb-1.0/"
58 "libusb-" version "/libusb-" version ".tar.bz2"))
59 (sha256
60 (base32
58ee8a94 61 "0mw1a5ss4alg37m6bd4k44v35xwrcwp5qm4s686q1nsgkbavkbkm"))))
3b48f78c 62 (build-system gnu-build-system)
034e0d50
LC
63
64 ;; XXX: Enabling udev is now recommended, but eudev indirectly depends on
65 ;; libusb.
66 (arguments `(#:configure-flags '("--disable-udev")))
67 ;; (inputs `(("eudev" ,eudev)))
68
f8ac2039 69 (home-page "https://libusb.info")
35b9e423 70 (synopsis "User-space USB library")
3b48f78c
NK
71 (description
72 "Libusb is a library that gives applications easy access to USB
73devices on various operating systems.")
75be6b7c
AE
74 (license lgpl2.1+)))
75
e0477b73
AW
76(define-public libusb-compat
77 (package
78 (name "libusb-compat")
79 (version "0.1.5")
80 (source
81 (origin
82 (method url-fetch)
83 (uri (string-append "mirror://sourceforge/libusb/"
84 name "-" (version-major+minor version) "/"
85 name "-" version "/"
86 name "-" version ".tar.bz2"))
87 (sha256
88 (base32
89 "0nn5icrfm9lkhzw1xjvaks9bq3w6mjg86ggv3fn7kgi4nfvg8kj0"))))
90 (build-system gnu-build-system)
91 (native-inputs
92 `(("pkg-config" ,pkg-config)))
93 (inputs
94 `(("libusb" ,libusb)))
f8ac2039 95 (home-page "https://libusb.info")
e0477b73
AW
96 (synopsis "Compatibility shim for libusb")
97 (description
98 "Libusb-compat provides a shim allowing applications based on older
99version of libusb to run with newer libusb.")
100 (license lgpl2.1+)))
101
05c88516
JB
102;; required by 0xffff, which compiles with libusb-compat, but executes only
103;; with libusb-0.1
104(define-public libusb-0.1
105 (package (inherit libusb)
106 (version "0.1.12")
107 (source
108 (origin
109 (method url-fetch)
110 (uri (string-append "mirror://sourceforge/libusb/libusb-0.1 (LEGACY)/"
111 version "/libusb-" version ".tar.gz"))
112 (sha256
113 (base32
114 "0i4bacxkyr7xyqxbmb00ypkrv4swkgm0mghbzjsnw6blvvczgxip"))
115 (patches (search-patches "libusb-0.1-disable-tests.patch"))))))
116
18fe5ef1
RW
117(define-public libusb4java
118 ;; There is no public release so we take the latest version from git.
119 (let ((commit "396d642a57678a0d9663b062c980fe100cc0ea1e")
120 (revision "1"))
121 (package
122 (name "libusb4java")
123 (version (string-append "0-" revision "." (string-take commit 9)))
124 (source (origin
125 (method git-fetch)
126 (uri (git-reference
127 (url "https://github.com/usb4java/libusb4java.git")
128 (commit commit)))
8cf57bc1 129 (file-name (git-file-name name version))
18fe5ef1
RW
130 (sha256
131 (base32
132 "0wqgapalhfh9v38ycbl6i2f5lh1wpr6fzwn5dwd0rdacypkd1gml"))))
133 (build-system cmake-build-system)
134 (arguments
135 `(#:tests? #f ; there are no tests
136 #:phases
137 (modify-phases %standard-phases
017bffc1
RW
138 ;; FIXME: libusb 1.0.22 deprecated libusb_set_debug, so the build
139 ;; fails because libusb4java uses a deprecated procedure.
140 (add-after 'unpack 'disable-Werror
141 (lambda _
142 (substitute* "CMakeLists.txt"
143 (("-Werror") ""))
144 #t))
18fe5ef1
RW
145 (add-before 'configure 'set-JAVA_HOME
146 (lambda* (#:key inputs #:allow-other-keys)
147 (setenv "JAVA_HOME" (assoc-ref inputs "jdk"))
148 #t)))))
149 (inputs
150 `(("libusb" ,libusb)))
151 (native-inputs
152 `(("jdk" ,icedtea "jdk")))
153 (home-page "https://github.com/usb4java/libusb4java/")
154 (synopsis "JNI bindings to libusb")
155 (description
156 "This package provides Java JNI bindings to the libusb library for use
157with usb4java.")
158 (license expat))))
159
423b6840
RW
160(define-public java-usb4java
161 (package
162 (name "java-usb4java")
163 (version "1.2.0")
164 (source (origin
165 (method url-fetch)
166 (uri (string-append "https://github.com/usb4java/usb4java/"
167 "archive/usb4java-" version ".tar.gz"))
168 (sha256
169 (base32
170 "0gzpsnzwgsdyra3smq288yvxnwrgvdwxr6g8jbknnsk56kv6wc34"))))
171 (build-system ant-build-system)
172 (arguments
173 `(#:jar-name "usb4java.jar"
174 #:phases
175 (modify-phases %standard-phases
176 ;; Usually, native libusb4java libraries for all supported systems
177 ;; would be included in the jar and extracted at runtime. Since we
178 ;; build everything from source we cannot just bundle pre-built
179 ;; binaries for other systems. Instead, we patch the loader to
180 ;; directly return the appropriate library for this system. The
181 ;; downside is that the jar will only work on the same architecture
182 ;; that it was built on.
183 (add-after 'unpack 'copy-libusb4java
184 (lambda* (#:key inputs #:allow-other-keys)
185 (substitute* "src/main/java/org/usb4java/Loader.java"
186 (("private static String extractLibrary" line)
187 (string-append
188 line "(final String a, final String b) {"
189 "return \""
190 (assoc-ref inputs "libusb4java") "/lib/libusb4java.so"
191 "\"; }\n"
192 "private static String _extractLibrary")))
193 #t))
194 (add-after 'unpack 'disable-broken-tests
195 (lambda _
196 (with-directory-excursion "src/test/java/org/usb4java"
197 ;; These tests should only be run when USB devices are present.
198 (substitute* '("LibUsbGlobalTest.java"
199 "TransferTest.java")
200 (("this.context = new Context\\(\\);")
201 "this.context = null;")
202 (("LibUsb.init") "//"))
203 (substitute* "DeviceListIteratorTest.java"
204 (("this.iterator.remove" line)
205 (string-append "assumeUsbTestsEnabled();" line))))
206 #t)))))
207 (inputs
208 `(("libusb4java" ,libusb4java)
209 ("java-commons-lang3" ,java-commons-lang3)
210 ("java-junit" ,java-junit)
211 ("java-hamcrest-core" ,java-hamcrest-core)))
212 (home-page "http://usb4java.org/")
213 (synopsis "USB library for Java")
214 (description
215 "This package provides a USB library for Java based on libusb and
216implementing @code{javax.usb} (JSR-80).")
217 (license expat)))
218
7abe3826
VC
219(define-public python-libusb1
220 (package
221 (name "python-libusb1")
222 (version "1.6.4")
223 (source
224 (origin
225 (method url-fetch)
226 (uri (pypi-uri "libusb1" version))
227 (sha256
228 (base32
229 "03b7xrz8vqg8w0za5r503jhcmbd1ls5610jcja1rqz833nf0v4wc"))))
230 (build-system python-build-system)
231 (arguments
232 `(#:modules ((srfi srfi-1)
233 (guix build utils)
234 (guix build python-build-system))
235 #:phases
236 (modify-phases %standard-phases
237 (add-before 'install-license-files 'remove-incorrect-license
238 (lambda* (#:key out #:allow-other-keys)
239 ;; Was relicensed to LGPL 2.1+, but old COPYING file still left
240 ;; in source. Remove it so it does not get installed.
241 (delete-file "COPYING")
242 #t))
243 (add-after 'unpack 'fix-libusb-reference
244 (lambda* (#:key inputs #:allow-other-keys)
245 (substitute* "usb1/libusb1.py"
246 (("libusb_path = ctypes.util.find_library\\(base_name\\)")
247 (string-append
248 "libusb_path = \""
249 (find (negate symbolic-link?)
250 (find-files (assoc-ref inputs "libusb")
251 "^libusb.*\\.so\\..*"))
252 "\"")))
253 #t)))))
254 (inputs `(("libusb" ,libusb)))
255 (home-page "https://github.com/vpelletier/python-libusb1")
256 (synopsis "Pure-python wrapper for libusb-1.0")
257 (description "Libusb is a library that gives applications easy access to
258USB devices on various operating systems. This package provides a Python
259wrapper for accessing libusb-1.0.")
260 (license lgpl2.1+)))
261
fac34dfe
RW
262(define-public python-pyusb
263 (package
264 (name "python-pyusb")
3ef4b301 265 (version "1.0.2")
fac34dfe
RW
266 (source
267 (origin
268 (method url-fetch)
3ef4b301 269 (uri (pypi-uri "pyusb" version))
fac34dfe
RW
270 (sha256
271 (base32
3ef4b301 272 "0qkk2jn270jwwl1x26hmdhb14m9kkbrzzwzizdjcl1a29b6756sf"))))
fac34dfe
RW
273 (build-system python-build-system)
274 (arguments
3ef4b301 275 `(#:tests? #f ; no tests
67a3b2dd
RW
276 #:modules ((srfi srfi-1)
277 (srfi srfi-26)
fac34dfe
RW
278 (guix build utils)
279 (guix build python-build-system))
280 #:phases
281 (modify-phases %standard-phases
282 (add-after 'unpack 'fix-libusb-reference
283 (lambda* (#:key inputs #:allow-other-keys)
284 (substitute* "usb/libloader.py"
285 (("lib = locate_library\\(candidates, find_library\\)")
286 (string-append
287 "lib = \""
67a3b2dd
RW
288 (find (negate symbolic-link?)
289 (find-files (assoc-ref inputs "libusb")
290 "^libusb-.*\\.so\\..*"))
fac34dfe
RW
291 "\"")))
292 #t)))))
293 (inputs
294 `(("libusb" ,libusb)))
3ef4b301 295 (home-page "https://pyusb.github.io/pyusb/")
fac34dfe
RW
296 (synopsis "Python bindings to the libusb library")
297 (description
298 "PyUSB aims to be an easy to use Python module to access USB devices.")
299 (license bsd-3)))
300
301(define-public python2-pyusb
302 (package-with-python2 python-pyusb))
303
75be6b7c
AE
304(define-public libmtp
305 (package
306 (name "libmtp")
876428dd 307 (version "1.1.16")
75be6b7c
AE
308 (source (origin
309 (method url-fetch)
de67e922 310 (uri (string-append "mirror://sourceforge/libmtp/libmtp/" version
75be6b7c
AE
311 "/libmtp-" version ".tar.gz"))
312 (sha256
0e6ee10c 313 (base32
876428dd 314 "185vh9bds6dcy00ycggg69g4v7m3api40zv8vrcfb3fk3vfzjs2v"))))
75be6b7c
AE
315 (build-system gnu-build-system)
316 (native-inputs
317 `(("pkg-config" ,pkg-config)))
cff77d48
SB
318 (propagated-inputs
319 ;; libmtp.pc refers to all these.
75be6b7c
AE
320 `(("libgcrypt" ,libgcrypt)
321 ("libusb" ,libusb)))
322 (arguments
323 `(#:configure-flags
324 (list (string-append "--with-udev="
325 (assoc-ref %outputs "out")
326 "/lib/udev"))))
327 (home-page "http://libmtp.sourceforge.net/")
328 (synopsis "Library implementing the Media Transfer Protocol")
329 (description "Libmtp implements an MTP (Media Transfer Protocol)
330initiator, which means that it initiates MTP sessions with devices. The
331devices responding are known as MTP responders. Libmtp runs on devices
332with a USB host controller interface. It implements MTP Basic, which was
333proposed for standardization.")
334 ;; COPYING contains lgpl2.1, while files headers give
335 ;; "GNU Lesser General Public License as published by the Free Software
336 ;; Foundation; either version 2 of the License, or (at your option) any
337 ;; later version."
338 (license lgpl2.1+)))
3d3caf1f
RW
339
340(define-public gmtp
341 (package
342 (name "gmtp")
f62dcba4 343 (version "1.3.11")
3d3caf1f
RW
344 (source (origin
345 (method url-fetch)
de67e922 346 (uri (string-append "mirror://sourceforge/gmtp/gMTP-" version
3d3caf1f
RW
347 "/gmtp-" version ".tar.gz"))
348 (sha256
349 (base32
f62dcba4 350 "04q6byyq002fhzkc2rkkahwh5b6272xakaj4m3vwm8la8jf0r0ss"))))
3d3caf1f
RW
351 (build-system glib-or-gtk-build-system)
352 (arguments
353 '(#:configure-flags
354 (let ((libid3tag (assoc-ref %build-inputs "libid3tag")))
355 (list
356 ;; libid3tag provides no .pc file, so pkg-config fails to find them.
357 (string-append "ID3TAG_CFLAGS=-I" libid3tag "/include")
358 (string-append "ID3TAG_LIBS=-L" libid3tag "/lib -lid3tag -lz")))))
359 (inputs
360 `(("gtk+" ,gtk+)
361 ("flac" ,flac)
362 ("libvorbis" ,libvorbis)
363 ("libid3tag" ,libid3tag)
364 ("libmtp" ,libmtp)))
365 (native-inputs
366 `(("pkg-config" ,pkg-config)))
367 (home-page "http://gmtp.sourceforge.net/")
368 (synopsis "Simple graphical MTP client")
369 (description "gMTP is a simple graphical client for the Media Transfer Protocol
370 (MTP), which allows media files to be transferred to and from many portable
371devices.")
372 (license bsd-3)))
3d74f12e
TF
373
374(define-public hidapi
375 (package
376 (name "hidapi")
377 (version "0.8.0-rc1")
378 (source (origin
379 (method url-fetch)
380 (uri (string-append "https://github.com/signal11/hidapi/archive/hidapi-"
381 version ".tar.gz"))
382 (sha256
383 (base32
384 "0qdgyj9rgb7n0nk3ghfswrhzzknxqn4ibn3wj8g4r828pw07451w"))))
385 (build-system gnu-build-system)
3d74f12e
TF
386 (inputs
387 `(("libusb" ,libusb)
388 ("udev" ,eudev)))
389 (native-inputs
390 `(("autoconf" ,autoconf)
391 ("automake" ,automake)
392 ("libtool" ,libtool)
393 ("pkg-config" ,pkg-config)))
394 (home-page "http://www.signal11.us/oss/hidapi/")
395 (synopsis "HID API library")
396 (description
397 "HIDAPI is a library which allows an application to interface with USB and Bluetooth
398HID-Class devices.")
399 ;; HIDAPI can be used under one of three licenses.
400 (license (list gpl3
401 bsd-3
28791c1c 402 (non-copyleft "file://LICENSE-orig.txt")))))
93e5c93e
DM
403
404(define-public python-hidapi
405 (package
406 (name "python-hidapi")
407 (version "0.7.99.post21")
408 (source
409 (origin
410 (method url-fetch)
411 (uri (pypi-uri "hidapi" version))
412 (sha256
413 (base32
414 "15ws59zdrxahf3k7z5rcrwc4jgv1307anif8ixm2cyb9ask1mgp0"))
415 (modules '((guix build utils)))
416 (snippet
417 ;; Remove bundled libraries.
418 '(begin
419 (delete-file-recursively "hidapi")
420 #t))))
421 (build-system python-build-system)
422 (arguments
423 `(#:phases
424 (modify-phases %standard-phases
425 (add-after 'unpack 'patch-configuration
426 (lambda* (#:key inputs #:allow-other-keys)
427 (substitute* "setup.py"
428 (("'/usr/include/libusb-1.0'")
429 (string-append "'" (assoc-ref inputs "libusb")
430 "/include/libusb-1.0'"))
431 (("'/usr/include/hidapi'")
432 (string-append "'" (assoc-ref inputs "hidapi")
433 "/include/hidapi'")))
434 #t))
435 ;; XXX Necessary because python-build-system drops the arguments.
436 (replace 'build
437 (lambda _
438 (invoke "python" "setup.py" "build" "--with-system-hidapi")))
439 (replace 'check
440 (lambda _
441 (invoke "python" "setup.py" "test" "--with-system-hidapi")))
442 (replace 'install
443 (lambda* (#:key outputs #:allow-other-keys)
444 (invoke "python" "setup.py" "install" "--with-system-hidapi"
445 (string-append "--prefix=" (assoc-ref outputs "out"))
446 "--single-version-externally-managed" "--root=/"))))))
447 (inputs
448 `(("hidapi" ,hidapi)
449 ("libusb" ,libusb)
450 ("eudev" ,eudev)))
451 (native-inputs
452 `(("python-cython" ,python-cython)))
453 (home-page "https://github.com/trezor/cython-hidapi")
454 (synopsis "Cython interface to hidapi")
455 (description "This package provides a Cython interface to @code{hidapi}.")
456 ;; The library can be used under either of these licenses.
457 (license (list gpl3 bsd-3
458 (non-copyleft
459 "https://github.com/trezor/cython-hidapi/blob/master/LICENSE-orig.txt"
460 "You are free to use cython-hidapi code for any purpose.")))))
461
462(define-public python2-hidapi
463 (package-with-python2 python-hidapi))