2013-01-06 00:47:50 +01:00
|
|
|
;;; GNU Guix --- Functional package management for GNU
|
|
|
|
;;; Copyright © 2012 Nikita Karetnikov <nikita@karetnikov.org>
|
2015-02-08 14:32:35 +01:00
|
|
|
;;; Copyright © 2015 Andreas Enge <andreas@enge.fr>
|
2015-08-06 12:22:08 +02:00
|
|
|
;;; Copyright © 2015 Andy Wingo <wingo@igalia.com>
|
2018-08-05 15:51:44 +02:00
|
|
|
;;; Copyright © 2015, 2016, 2017, 2018, 2019 Ricardo Wurmus <rekado@elephly.net>
|
2016-03-21 19:52:26 +01:00
|
|
|
;;; Copyright © 2016 Efraim Flashner <efraim@flashner.co.il>
|
2017-09-29 12:36:20 +02:00
|
|
|
;;; Copyright © 2016 Theodoros Foradis <theodoros@foradis.org>
|
2017-07-14 00:28:14 +02:00
|
|
|
;;; Copyright © 2017 Jonathan Brielmaier <jonathan.brielmaier@web.de>
|
2018-01-10 23:13:41 +01:00
|
|
|
;;; Copyright © 2018 Tobias Geerinckx-Rice <me@tobias.gr>
|
2018-06-26 07:22:48 +02:00
|
|
|
;;; Copyright © 2018 Vagrant Cascadian <vagrant@debian.org>
|
2012-12-18 23:34:52 +01:00
|
|
|
;;;
|
2013-01-06 00:47:50 +01:00
|
|
|
;;; This file is part of GNU Guix.
|
2012-12-18 23:34:52 +01:00
|
|
|
;;;
|
2013-01-06 00:47:50 +01:00
|
|
|
;;; GNU Guix is free software; you can redistribute it and/or modify it
|
2012-12-18 23:34:52 +01:00
|
|
|
;;; under the terms of the GNU General Public License as published by
|
|
|
|
;;; the Free Software Foundation; either version 3 of the License, or (at
|
|
|
|
;;; your option) any later version.
|
|
|
|
;;;
|
2013-01-06 00:47:50 +01:00
|
|
|
;;; GNU Guix is distributed in the hope that it will be useful, but
|
2012-12-18 23:34:52 +01:00
|
|
|
;;; WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
;;; GNU General Public License for more details.
|
|
|
|
;;;
|
|
|
|
;;; You should have received a copy of the GNU General Public License
|
2013-01-06 00:47:50 +01:00
|
|
|
;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
|
2012-12-18 23:34:52 +01:00
|
|
|
|
2013-01-18 01:06:24 +01:00
|
|
|
(define-module (gnu packages libusb)
|
2013-01-18 01:06:47 +01:00
|
|
|
#:use-module (gnu packages)
|
2018-08-05 15:48:18 +02:00
|
|
|
#:use-module ((guix licenses) #:prefix license:)
|
2012-12-18 23:34:52 +01:00
|
|
|
#:use-module (guix packages)
|
2015-08-06 12:22:08 +02:00
|
|
|
#:use-module (guix utils)
|
2012-12-18 23:34:52 +01:00
|
|
|
#:use-module (guix download)
|
2016-10-10 18:27:40 +02:00
|
|
|
#:use-module (guix git-download)
|
2017-05-07 21:40:59 +02:00
|
|
|
#:use-module (guix build-system ant)
|
2016-10-10 18:27:40 +02:00
|
|
|
#:use-module (guix build-system cmake)
|
2015-02-08 14:32:35 +01:00
|
|
|
#:use-module (guix build-system gnu)
|
2015-09-06 23:07:10 +02:00
|
|
|
#:use-module (guix build-system glib-or-gtk)
|
2016-03-29 09:06:09 +02:00
|
|
|
#:use-module (guix build-system python)
|
2016-10-28 19:36:05 +02:00
|
|
|
#:use-module (gnu packages autotools)
|
2015-02-08 14:32:35 +01:00
|
|
|
#:use-module (gnu packages gnupg)
|
2015-09-06 23:07:10 +02:00
|
|
|
#:use-module (gnu packages gtk)
|
2016-10-10 18:27:40 +02:00
|
|
|
#:use-module (gnu packages java)
|
2015-05-16 00:13:17 +02:00
|
|
|
#:use-module (gnu packages linux)
|
2015-09-06 23:07:10 +02:00
|
|
|
#:use-module (gnu packages mp3)
|
|
|
|
#:use-module (gnu packages pkg-config)
|
2016-03-29 09:06:09 +02:00
|
|
|
#:use-module (gnu packages python)
|
gnu: Separate Python core packages from the rest.
* gnu/packages/python.scm: Move hundreds of package definitions from here...
* gnu/packages/python-xyz.scm: ...to this new module.
* gnu/local.mk (GNU_SYSTEM_MODULES): Add it.
* gnu/packages/ada.scm,
gnu/packages/admin.scm,
gnu/packages/android.scm,
gnu/packages/audio.scm,
gnu/packages/backup.scm,
gnu/packages/benchmark.scm,
gnu/packages/bioinformatics.scm,
gnu/packages/bittorrent.scm,
gnu/packages/calendar.scm,
gnu/packages/check.scm,
gnu/packages/chemistry.scm,
gnu/packages/cluster.scm,
gnu/packages/compression.scm,
gnu/packages/connman.scm,
gnu/packages/crypto.scm,
gnu/packages/cups.scm,
gnu/packages/databases.scm,
gnu/packages/dav.scm,
gnu/packages/direct-connect.scm,
gnu/packages/disk.scm,
gnu/packages/django.scm,
gnu/packages/dlang.scm,
gnu/packages/docker.scm,
gnu/packages/ebook.scm,
gnu/packages/elf.scm,
gnu/packages/emacs.scm,
gnu/packages/emulators.scm,
gnu/packages/engineering.scm,
gnu/packages/enlightenment.scm,
gnu/packages/finance.scm,
gnu/packages/fltk.scm,
gnu/packages/fontutils.scm,
gnu/packages/freedesktop.scm,
gnu/packages/game-development.scm,
gnu/packages/games.scm,
gnu/packages/geo.scm,
gnu/packages/gl.scm,
gnu/packages/glib.scm,
gnu/packages/gnome.scm,
gnu/packages/gnupg.scm,
gnu/packages/gnuzilla.scm,
gnu/packages/graph.scm,
gnu/packages/graphics.scm,
gnu/packages/graphviz.scm,
gnu/packages/gtk.scm,
gnu/packages/ham-radio.scm,
gnu/packages/image-processing.scm,
gnu/packages/image-viewers.scm,
gnu/packages/image.scm,
gnu/packages/irc.scm,
gnu/packages/jrnl.scm,
gnu/packages/julia.scm,
gnu/packages/kde-frameworks.scm,
gnu/packages/key-mon.scm,
gnu/packages/libffi.scm,
gnu/packages/libreoffice.scm,
gnu/packages/libusb.scm,
gnu/packages/lirc.scm,
gnu/packages/logging.scm,
gnu/packages/machine-learning.scm,
gnu/packages/mail.scm,
gnu/packages/mate.scm,
gnu/packages/maths.scm,
gnu/packages/medical.scm,
gnu/packages/messaging.scm,
gnu/packages/monitoring.scm,
gnu/packages/mp3.scm,
gnu/packages/mpd.scm,
gnu/packages/music.scm,
gnu/packages/networking.scm,
gnu/packages/nutrition.scm,
gnu/packages/openldap.scm,
gnu/packages/openstack.scm,
gnu/packages/package-management.scm,
gnu/packages/password-utils.scm,
gnu/packages/patchutils.scm,
gnu/packages/pdf.scm,
gnu/packages/photo.scm,
gnu/packages/polkit.scm,
gnu/packages/protobuf.scm,
gnu/packages/python-crypto.scm,
gnu/packages/python-web.scm,
gnu/packages/qt.scm,
gnu/packages/rdf.scm,
gnu/packages/ruby.scm,
gnu/packages/search.scm,
gnu/packages/selinux.scm,
gnu/packages/serialization.scm,
gnu/packages/shells.scm,
gnu/packages/simulation.scm,
gnu/packages/ssh.scm,
gnu/packages/statistics.scm,
gnu/packages/storage.scm,
gnu/packages/sync.scm,
gnu/packages/terminals.scm,
gnu/packages/textutils.scm,
gnu/packages/time.scm,
gnu/packages/tls.scm,
gnu/packages/tor.scm,
gnu/packages/tryton.scm,
gnu/packages/version-control.scm,
gnu/packages/video.scm,
gnu/packages/virtualization.scm,
gnu/packages/vpn.scm,
gnu/packages/web-browsers.scm,
gnu/packages/web.scm,
gnu/packages/wicd.scm,
gnu/packages/xdisorg.scm,
gnu/packages/xorg.scm: Update module references.
2019-01-15 14:21:30 +01:00
|
|
|
#:use-module (gnu packages python-xyz)
|
2018-08-05 15:51:44 +02:00
|
|
|
#:use-module (gnu packages tls)
|
2015-09-06 23:07:10 +02:00
|
|
|
#:use-module (gnu packages xiph))
|
2012-12-18 23:34:52 +01:00
|
|
|
|
|
|
|
(define-public libusb
|
|
|
|
(package
|
|
|
|
(name "libusb")
|
2019-08-30 20:55:58 +02:00
|
|
|
(version "1.0.23")
|
2012-12-18 23:34:52 +01:00
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
2019-08-30 20:55:58 +02:00
|
|
|
(uri (string-append "https://github.com/libusb/libusb/"
|
|
|
|
"releases/download/v" version
|
|
|
|
"/libusb-" version ".tar.bz2"))
|
2012-12-18 23:34:52 +01:00
|
|
|
(sha256
|
2019-08-30 20:55:58 +02:00
|
|
|
(base32 "13dd2a9x290d1q8nb1lqiaf36grcvns5ripk5k2xm0lajmpc04fv"))))
|
2012-12-18 23:34:52 +01:00
|
|
|
(build-system gnu-build-system)
|
2015-05-16 00:13:17 +02:00
|
|
|
|
|
|
|
;; XXX: Enabling udev is now recommended, but eudev indirectly depends on
|
|
|
|
;; libusb.
|
|
|
|
(arguments `(#:configure-flags '("--disable-udev")))
|
|
|
|
;; (inputs `(("eudev" ,eudev)))
|
|
|
|
|
2018-07-13 02:57:07 +02:00
|
|
|
(home-page "https://libusb.info")
|
gnu: Some cleanup based on lint checkers.
* gnu/packages/admin.scm, gnu/packages/aidc.scm, gnu/packages/algebra.scm,
gnu/packages/apr.scm, gnu/packages/avahi.scm, gnu/packages/backup.scm,
gnu/packages/base.scm, gnu/packages/calcurse.scm, gnu/packages/cdrom.scm,
gnu/packages/check.scm, gnu/packages/compression.scm, gnu/packages/cook.scm,
gnu/packages/crypto.scm, gnu/packages/cryptsetup.scm, gnu/packages/curl.scm,
gnu/packages/cyrus-sasl.scm, gnu/packages/databases.scm,
gnu/packages/doxygen.scm, gnu/packages/dwm.scm, gnu/packages/elf.scm,
gnu/packages/emacs.scm, gnu/packages/feh.scm, gnu/packages/file.scm,
gnu/packages/fish.scm, gnu/packages/flex.scm, gnu/packages/fltk.scm,
gnu/packages/fontutils.scm, gnu/packages/games.scm, gnu/packages/gcal.scm,
gnu/packages/gcc.scm, gnu/packages/geeqie.scm, gnu/packages/ghostscript.scm,
gnu/packages/gimp.scm, gnu/packages/gl.scm, gnu/packages/glib.scm,
gnu/packages/gnome.scm, gnu/packages/gnunet.scm, gnu/packages/gnupg.scm,
gnu/packages/gperf.scm, gnu/packages/grub.scm, gnu/packages/gsasl.scm,
gnu/packages/gtk.scm, gnu/packages/guile-wm.scm, gnu/packages/guile.scm,
gnu/packages/hurd.scm, gnu/packages/icu4c.scm, gnu/packages/image.scm,
gnu/packages/imagemagick.scm, gnu/packages/irssi.scm, gnu/packages/kde.scm,
gnu/packages/libdaemon.scm, gnu/packages/libevent.scm,
gnu/packages/libidn.scm, gnu/packages/libusb.scm, gnu/packages/linux.scm,
gnu/packages/lout.scm, gnu/packages/lsh.scm, gnu/packages/lsof.scm,
gnu/packages/lua.scm, gnu/packages/maths.scm, gnu/packages/mcrypt.scm,
gnu/packages/mp3.scm, gnu/packages/netpbm.scm, gnu/packages/noweb.scm,
gnu/packages/ocaml.scm, gnu/packages/openssl.scm, gnu/packages/pcre.scm,
gnu/packages/pdf.scm, gnu/packages/pkg-config.scm,
gnu/packages/pretty-print.scm, gnu/packages/python.scm, gnu/packages/qt.scm,
gnu/packages/rsync.scm, gnu/packages/scheme.scm, gnu/packages/scrot.scm,
gnu/packages/sdl.scm, gnu/packages/skribilo.scm, gnu/packages/ssh.scm,
gnu/packages/stalonetray.scm, gnu/packages/tcl.scm, gnu/packages/tcsh.scm,
gnu/packages/telephony.scm, gnu/packages/texlive.scm, gnu/packages/tor.scm,
gnu/packages/valgrind.scm, gnu/packages/version-control.scm,
gnu/packages/vim.scm, gnu/packages/vpn.scm, gnu/packages/w3m.scm,
gnu/packages/web.scm, gnu/packages/wordnet.scm, gnu/packages/xiph.scm,
gnu/packages/xml.scm, gnu/packages/xorg.scm, gnu/packages/zile.scm,
gnu/packages/zip.scm, gnu/packages/zsh.scm [synopsis, description]: Adjust
according to lint checkers.
* gnu/packages/fltk.scm (fltk)[source]: Wrap long line in uri.
* /gnu/packages/xiph.scm (libogg, libtheora, vorbis-tools)[source]: Same.
2014-10-24 06:46:59 +02:00
|
|
|
(synopsis "User-space USB library")
|
2012-12-18 23:34:52 +01:00
|
|
|
(description
|
|
|
|
"Libusb is a library that gives applications easy access to USB
|
|
|
|
devices on various operating systems.")
|
2018-08-05 15:48:18 +02:00
|
|
|
(license license:lgpl2.1+)))
|
2015-02-08 14:32:35 +01:00
|
|
|
|
2015-08-06 12:22:08 +02:00
|
|
|
(define-public libusb-compat
|
|
|
|
(package
|
|
|
|
(name "libusb-compat")
|
|
|
|
(version "0.1.5")
|
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append "mirror://sourceforge/libusb/"
|
2019-08-30 20:56:07 +02:00
|
|
|
"libusb-compat-" (version-major+minor version) "/"
|
|
|
|
"libusb-compat-" version "/"
|
|
|
|
"libusb-compat-" version ".tar.bz2"))
|
2015-08-06 12:22:08 +02:00
|
|
|
(sha256
|
|
|
|
(base32
|
|
|
|
"0nn5icrfm9lkhzw1xjvaks9bq3w6mjg86ggv3fn7kgi4nfvg8kj0"))))
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
(native-inputs
|
|
|
|
`(("pkg-config" ,pkg-config)))
|
|
|
|
(inputs
|
|
|
|
`(("libusb" ,libusb)))
|
2018-07-13 02:57:07 +02:00
|
|
|
(home-page "https://libusb.info")
|
2015-08-06 12:22:08 +02:00
|
|
|
(synopsis "Compatibility shim for libusb")
|
|
|
|
(description
|
|
|
|
"Libusb-compat provides a shim allowing applications based on older
|
|
|
|
version of libusb to run with newer libusb.")
|
2018-08-05 15:48:18 +02:00
|
|
|
(license license:lgpl2.1+)))
|
2015-08-06 12:22:08 +02:00
|
|
|
|
2017-07-14 00:28:14 +02:00
|
|
|
;; required by 0xffff, which compiles with libusb-compat, but executes only
|
|
|
|
;; with libusb-0.1
|
|
|
|
(define-public libusb-0.1
|
|
|
|
(package (inherit libusb)
|
|
|
|
(version "0.1.12")
|
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append "mirror://sourceforge/libusb/libusb-0.1 (LEGACY)/"
|
|
|
|
version "/libusb-" version ".tar.gz"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
|
|
|
"0i4bacxkyr7xyqxbmb00ypkrv4swkgm0mghbzjsnw6blvvczgxip"))
|
|
|
|
(patches (search-patches "libusb-0.1-disable-tests.patch"))))))
|
|
|
|
|
2016-10-10 18:27:40 +02:00
|
|
|
(define-public libusb4java
|
|
|
|
;; There is no public release so we take the latest version from git.
|
|
|
|
(let ((commit "396d642a57678a0d9663b062c980fe100cc0ea1e")
|
|
|
|
(revision "1"))
|
|
|
|
(package
|
|
|
|
(name "libusb4java")
|
|
|
|
(version (string-append "0-" revision "." (string-take commit 9)))
|
|
|
|
(source (origin
|
|
|
|
(method git-fetch)
|
|
|
|
(uri (git-reference
|
|
|
|
(url "https://github.com/usb4java/libusb4java.git")
|
|
|
|
(commit commit)))
|
2018-03-13 19:07:51 +01:00
|
|
|
(file-name (git-file-name name version))
|
2016-10-10 18:27:40 +02:00
|
|
|
(sha256
|
|
|
|
(base32
|
|
|
|
"0wqgapalhfh9v38ycbl6i2f5lh1wpr6fzwn5dwd0rdacypkd1gml"))))
|
|
|
|
(build-system cmake-build-system)
|
|
|
|
(arguments
|
|
|
|
`(#:tests? #f ; there are no tests
|
|
|
|
#:phases
|
|
|
|
(modify-phases %standard-phases
|
2018-03-29 12:25:45 +02:00
|
|
|
;; FIXME: libusb 1.0.22 deprecated libusb_set_debug, so the build
|
|
|
|
;; fails because libusb4java uses a deprecated procedure.
|
|
|
|
(add-after 'unpack 'disable-Werror
|
|
|
|
(lambda _
|
|
|
|
(substitute* "CMakeLists.txt"
|
|
|
|
(("-Werror") ""))
|
|
|
|
#t))
|
2016-10-10 18:27:40 +02:00
|
|
|
(add-before 'configure 'set-JAVA_HOME
|
|
|
|
(lambda* (#:key inputs #:allow-other-keys)
|
|
|
|
(setenv "JAVA_HOME" (assoc-ref inputs "jdk"))
|
|
|
|
#t)))))
|
|
|
|
(inputs
|
|
|
|
`(("libusb" ,libusb)))
|
|
|
|
(native-inputs
|
|
|
|
`(("jdk" ,icedtea "jdk")))
|
|
|
|
(home-page "https://github.com/usb4java/libusb4java/")
|
|
|
|
(synopsis "JNI bindings to libusb")
|
|
|
|
(description
|
|
|
|
"This package provides Java JNI bindings to the libusb library for use
|
|
|
|
with usb4java.")
|
2018-08-05 15:48:18 +02:00
|
|
|
(license license:expat))))
|
2016-10-10 18:27:40 +02:00
|
|
|
|
2017-05-07 21:40:59 +02:00
|
|
|
(define-public java-usb4java
|
|
|
|
(package
|
|
|
|
(name "java-usb4java")
|
|
|
|
(version "1.2.0")
|
|
|
|
(source (origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append "https://github.com/usb4java/usb4java/"
|
|
|
|
"archive/usb4java-" version ".tar.gz"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
|
|
|
"0gzpsnzwgsdyra3smq288yvxnwrgvdwxr6g8jbknnsk56kv6wc34"))))
|
|
|
|
(build-system ant-build-system)
|
|
|
|
(arguments
|
|
|
|
`(#:jar-name "usb4java.jar"
|
|
|
|
#:phases
|
|
|
|
(modify-phases %standard-phases
|
|
|
|
;; Usually, native libusb4java libraries for all supported systems
|
|
|
|
;; would be included in the jar and extracted at runtime. Since we
|
|
|
|
;; build everything from source we cannot just bundle pre-built
|
|
|
|
;; binaries for other systems. Instead, we patch the loader to
|
|
|
|
;; directly return the appropriate library for this system. The
|
|
|
|
;; downside is that the jar will only work on the same architecture
|
|
|
|
;; that it was built on.
|
|
|
|
(add-after 'unpack 'copy-libusb4java
|
|
|
|
(lambda* (#:key inputs #:allow-other-keys)
|
|
|
|
(substitute* "src/main/java/org/usb4java/Loader.java"
|
|
|
|
(("private static String extractLibrary" line)
|
|
|
|
(string-append
|
|
|
|
line "(final String a, final String b) {"
|
|
|
|
"return \""
|
|
|
|
(assoc-ref inputs "libusb4java") "/lib/libusb4java.so"
|
|
|
|
"\"; }\n"
|
|
|
|
"private static String _extractLibrary")))
|
|
|
|
#t))
|
|
|
|
(add-after 'unpack 'disable-broken-tests
|
|
|
|
(lambda _
|
|
|
|
(with-directory-excursion "src/test/java/org/usb4java"
|
|
|
|
;; These tests should only be run when USB devices are present.
|
|
|
|
(substitute* '("LibUsbGlobalTest.java"
|
|
|
|
"TransferTest.java")
|
|
|
|
(("this.context = new Context\\(\\);")
|
|
|
|
"this.context = null;")
|
|
|
|
(("LibUsb.init") "//"))
|
|
|
|
(substitute* "DeviceListIteratorTest.java"
|
|
|
|
(("this.iterator.remove" line)
|
|
|
|
(string-append "assumeUsbTestsEnabled();" line))))
|
|
|
|
#t)))))
|
|
|
|
(inputs
|
|
|
|
`(("libusb4java" ,libusb4java)
|
|
|
|
("java-commons-lang3" ,java-commons-lang3)
|
|
|
|
("java-junit" ,java-junit)
|
|
|
|
("java-hamcrest-core" ,java-hamcrest-core)))
|
|
|
|
(home-page "http://usb4java.org/")
|
|
|
|
(synopsis "USB library for Java")
|
|
|
|
(description
|
|
|
|
"This package provides a USB library for Java based on libusb and
|
|
|
|
implementing @code{javax.usb} (JSR-80).")
|
2018-08-05 15:48:18 +02:00
|
|
|
(license license:expat)))
|
2017-05-07 21:40:59 +02:00
|
|
|
|
2018-06-26 07:22:48 +02:00
|
|
|
(define-public python-libusb1
|
|
|
|
(package
|
|
|
|
(name "python-libusb1")
|
|
|
|
(version "1.6.4")
|
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (pypi-uri "libusb1" version))
|
|
|
|
(sha256
|
|
|
|
(base32
|
|
|
|
"03b7xrz8vqg8w0za5r503jhcmbd1ls5610jcja1rqz833nf0v4wc"))))
|
|
|
|
(build-system python-build-system)
|
|
|
|
(arguments
|
|
|
|
`(#:modules ((srfi srfi-1)
|
|
|
|
(guix build utils)
|
|
|
|
(guix build python-build-system))
|
|
|
|
#:phases
|
|
|
|
(modify-phases %standard-phases
|
|
|
|
(add-before 'install-license-files 'remove-incorrect-license
|
|
|
|
(lambda* (#:key out #:allow-other-keys)
|
|
|
|
;; Was relicensed to LGPL 2.1+, but old COPYING file still left
|
|
|
|
;; in source. Remove it so it does not get installed.
|
|
|
|
(delete-file "COPYING")
|
|
|
|
#t))
|
|
|
|
(add-after 'unpack 'fix-libusb-reference
|
|
|
|
(lambda* (#:key inputs #:allow-other-keys)
|
|
|
|
(substitute* "usb1/libusb1.py"
|
|
|
|
(("libusb_path = ctypes.util.find_library\\(base_name\\)")
|
|
|
|
(string-append
|
|
|
|
"libusb_path = \""
|
|
|
|
(find (negate symbolic-link?)
|
|
|
|
(find-files (assoc-ref inputs "libusb")
|
|
|
|
"^libusb.*\\.so\\..*"))
|
|
|
|
"\"")))
|
|
|
|
#t)))))
|
|
|
|
(inputs `(("libusb" ,libusb)))
|
|
|
|
(home-page "https://github.com/vpelletier/python-libusb1")
|
|
|
|
(synopsis "Pure-python wrapper for libusb-1.0")
|
|
|
|
(description "Libusb is a library that gives applications easy access to
|
|
|
|
USB devices on various operating systems. This package provides a Python
|
|
|
|
wrapper for accessing libusb-1.0.")
|
2018-08-05 15:48:18 +02:00
|
|
|
(license license:lgpl2.1+)))
|
2018-06-26 07:22:48 +02:00
|
|
|
|
2016-03-29 09:06:09 +02:00
|
|
|
(define-public python-pyusb
|
|
|
|
(package
|
|
|
|
(name "python-pyusb")
|
2018-08-17 02:55:11 +02:00
|
|
|
(version "1.0.2")
|
2016-03-29 09:06:09 +02:00
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
2018-08-17 02:55:11 +02:00
|
|
|
(uri (pypi-uri "pyusb" version))
|
2016-03-29 09:06:09 +02:00
|
|
|
(sha256
|
|
|
|
(base32
|
2018-08-17 02:55:11 +02:00
|
|
|
"0qkk2jn270jwwl1x26hmdhb14m9kkbrzzwzizdjcl1a29b6756sf"))))
|
2016-03-29 09:06:09 +02:00
|
|
|
(build-system python-build-system)
|
|
|
|
(arguments
|
2018-08-17 02:55:11 +02:00
|
|
|
`(#:tests? #f ; no tests
|
2016-10-30 08:15:23 +01:00
|
|
|
#:modules ((srfi srfi-1)
|
|
|
|
(srfi srfi-26)
|
2016-03-29 09:06:09 +02:00
|
|
|
(guix build utils)
|
|
|
|
(guix build python-build-system))
|
|
|
|
#:phases
|
|
|
|
(modify-phases %standard-phases
|
|
|
|
(add-after 'unpack 'fix-libusb-reference
|
|
|
|
(lambda* (#:key inputs #:allow-other-keys)
|
|
|
|
(substitute* "usb/libloader.py"
|
|
|
|
(("lib = locate_library\\(candidates, find_library\\)")
|
|
|
|
(string-append
|
|
|
|
"lib = \""
|
2016-10-30 08:15:23 +01:00
|
|
|
(find (negate symbolic-link?)
|
|
|
|
(find-files (assoc-ref inputs "libusb")
|
|
|
|
"^libusb-.*\\.so\\..*"))
|
2016-03-29 09:06:09 +02:00
|
|
|
"\"")))
|
|
|
|
#t)))))
|
|
|
|
(inputs
|
|
|
|
`(("libusb" ,libusb)))
|
2018-08-17 02:55:11 +02:00
|
|
|
(home-page "https://pyusb.github.io/pyusb/")
|
2016-03-29 09:06:09 +02:00
|
|
|
(synopsis "Python bindings to the libusb library")
|
|
|
|
(description
|
|
|
|
"PyUSB aims to be an easy to use Python module to access USB devices.")
|
2018-08-05 15:48:18 +02:00
|
|
|
(license license:bsd-3)))
|
2016-03-29 09:06:09 +02:00
|
|
|
|
|
|
|
(define-public python2-pyusb
|
|
|
|
(package-with-python2 python-pyusb))
|
|
|
|
|
2018-08-05 15:50:23 +02:00
|
|
|
(define-public libplist
|
|
|
|
(package
|
|
|
|
(name "libplist")
|
|
|
|
(version "2.0.0")
|
|
|
|
(source (origin
|
|
|
|
(method url-fetch)
|
2019-03-15 12:34:02 +01:00
|
|
|
(uri (string-append "https://www.libimobiledevice.org/downloads/"
|
2018-08-05 15:50:23 +02:00
|
|
|
"libplist-" version ".tar.bz2"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
|
|
|
"00pnh9zf3iwdji2faccns7vagbmbrwbj9a8zp9s53a6rqaa9czis"))))
|
|
|
|
(build-system gnu-build-system)
|
2019-04-30 16:44:12 +02:00
|
|
|
(arguments
|
|
|
|
;; Tests fail randomly when run in parallel because several of them write
|
|
|
|
;; and read to/from the same file--e.g., "4.plist" is accessed by
|
|
|
|
;; 'large.test' and 'largecmp.test'.
|
|
|
|
'(#:parallel-tests? #f))
|
2018-08-05 15:50:23 +02:00
|
|
|
(inputs
|
|
|
|
`(("python" ,python)))
|
|
|
|
(native-inputs
|
|
|
|
`(("pkg-config" ,pkg-config)
|
|
|
|
("python-cython" ,python-cython)))
|
2019-03-15 12:34:02 +01:00
|
|
|
(home-page "https://www.libimobiledevice.org/")
|
2018-08-05 15:50:23 +02:00
|
|
|
(synopsis "C library to handle Apple Property List files")
|
|
|
|
(description "This package provides a small portable C library to handle
|
|
|
|
Apple Property List files in binary or XML.")
|
|
|
|
(license license:lgpl2.1+)))
|
|
|
|
|
2018-08-05 15:50:56 +02:00
|
|
|
(define-public libusbmuxd
|
|
|
|
(package
|
|
|
|
(name "libusbmuxd")
|
|
|
|
(version "1.0.10")
|
|
|
|
(source (origin
|
|
|
|
(method url-fetch)
|
2019-03-15 12:34:02 +01:00
|
|
|
(uri (string-append "https://www.libimobiledevice.org/downloads/"
|
2018-08-05 15:50:56 +02:00
|
|
|
"libusbmuxd-" version ".tar.bz2"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
|
|
|
"1wn9zq2224786mdr12c5hxad643d29wg4z6b7jn888jx4s8i78hs"))))
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
(native-inputs
|
|
|
|
`(("pkg-config" ,pkg-config)
|
|
|
|
("libplist" ,libplist)))
|
2019-03-15 12:34:02 +01:00
|
|
|
(home-page "https://www.libimobiledevice.org/")
|
2018-08-05 15:50:56 +02:00
|
|
|
(synopsis "Library to multiplex connections from and to iOS devices")
|
|
|
|
(description "This package provides a client library to multiplex
|
|
|
|
connections from and to iOS devices by connecting to a socket provided by a
|
|
|
|
@code{usbmuxd} daemon.")
|
|
|
|
(license license:lgpl2.1+)))
|
|
|
|
|
2018-08-05 15:51:44 +02:00
|
|
|
(define-public libimobiledevice
|
|
|
|
(package
|
|
|
|
(name "libimobiledevice")
|
|
|
|
(version "1.2.0")
|
|
|
|
(source (origin
|
|
|
|
(method url-fetch)
|
2019-03-15 12:34:02 +01:00
|
|
|
(uri (string-append "https://www.libimobiledevice.org/downloads/"
|
2018-08-05 15:51:44 +02:00
|
|
|
"libimobiledevice-" version ".tar.bz2"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
|
|
|
"0dqhy4qwj30mw8pwckvjmgnj1qqrh6p8c6jknmhvylshhzh0ssvq"))))
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
(arguments
|
|
|
|
`(#:configure-flags
|
|
|
|
(list (string-append "PYTHON_LDFLAGS=-L"
|
|
|
|
(assoc-ref %build-inputs "python")
|
|
|
|
"/lib -lpython"
|
|
|
|
,(version-major+minor (package-version python))
|
|
|
|
"m"))))
|
|
|
|
(propagated-inputs
|
|
|
|
`(("openssl" ,openssl)
|
2019-02-05 22:33:21 +01:00
|
|
|
("libplist" ,libplist)
|
2018-08-05 15:51:44 +02:00
|
|
|
("libusbmuxd" ,libusbmuxd)))
|
|
|
|
(inputs
|
2019-02-05 22:32:19 +01:00
|
|
|
`(("python" ,python)))
|
2018-08-05 15:51:44 +02:00
|
|
|
(native-inputs
|
|
|
|
`(("pkg-config" ,pkg-config)
|
|
|
|
("python-cython" ,python-cython)
|
|
|
|
("libtool" ,libtool)))
|
2019-03-15 12:34:02 +01:00
|
|
|
(home-page "https://www.libimobiledevice.org/")
|
2018-08-05 15:51:44 +02:00
|
|
|
(synopsis "Protocol library and tools to communicate with Apple devices")
|
|
|
|
(description "libimobiledevice is a software library that talks the
|
|
|
|
protocols to support Apple devices. It allows other software to easily access
|
2019-04-24 19:15:57 +02:00
|
|
|
the device's file system, retrieve information about the device and its
|
2018-08-05 15:51:44 +02:00
|
|
|
internals, backup/restore the device, manage installed applications, retrieve
|
2019-04-24 19:15:57 +02:00
|
|
|
address books, calendars, notes, and bookmarks, and (using libgpod) synchronize
|
2018-08-05 15:51:44 +02:00
|
|
|
music and video to the device.")
|
|
|
|
(license license:lgpl2.1+)))
|
|
|
|
|
2019-02-05 22:33:21 +01:00
|
|
|
(define-public ifuse
|
|
|
|
(package
|
|
|
|
(name "ifuse")
|
|
|
|
(version "1.1.3")
|
|
|
|
(source (origin
|
|
|
|
(method url-fetch)
|
2019-03-15 12:34:02 +01:00
|
|
|
(uri (string-append "https://www.libimobiledevice.org/downloads/"
|
2019-02-05 22:33:21 +01:00
|
|
|
"ifuse-" version ".tar.bz2"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
|
|
|
"1p9a4n36jb194cnp6v57cz2bggwbywaz8pbpb95ch83pzdkdx257"))))
|
|
|
|
(inputs
|
|
|
|
`(("fuse" ,fuse)
|
|
|
|
("libimobiledevice" ,libimobiledevice)))
|
|
|
|
(native-inputs
|
|
|
|
`(("pkg-config" ,pkg-config)))
|
|
|
|
(build-system gnu-build-system)
|
2019-03-15 12:34:02 +01:00
|
|
|
(home-page "https://www.libimobiledevice.org/")
|
2019-02-05 22:33:21 +01:00
|
|
|
(synopsis "Mount iOS devices")
|
|
|
|
(description "This package provides @command{ifuse}, a command to mount
|
|
|
|
iOS devices and access their contents.")
|
|
|
|
(license license:lgpl2.1+)))
|
|
|
|
|
2019-02-05 23:12:35 +01:00
|
|
|
(define-public usbmuxd
|
|
|
|
(package
|
|
|
|
(name "usbmuxd")
|
|
|
|
(version "1.1.0")
|
|
|
|
(source (origin
|
|
|
|
(method url-fetch)
|
2019-03-15 12:34:02 +01:00
|
|
|
(uri (string-append "https://www.libimobiledevice.org/downloads/"
|
2019-02-05 23:12:35 +01:00
|
|
|
"usbmuxd-" version ".tar.bz2"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
|
|
|
"0bdlc7a8plvglqqx39qqampqm6y0hcdws76l9dffwl22zss4i29y"))))
|
|
|
|
(inputs
|
|
|
|
`(("libplist" ,libplist)
|
|
|
|
("libusb" ,libusb)
|
|
|
|
("libimobiledevice" ,libimobiledevice)))
|
|
|
|
(native-inputs
|
|
|
|
`(("pkg-config" ,pkg-config)))
|
|
|
|
(build-system gnu-build-system)
|
2019-03-15 12:34:02 +01:00
|
|
|
(home-page "https://www.libimobiledevice.org/")
|
2019-02-05 23:12:35 +01:00
|
|
|
(synopsis "Multiplex connections over USB to an iOS device")
|
|
|
|
(description "This package provides the @code{usbmuxd} daemon
|
|
|
|
which multiplexes connections over USB to an iOS device. To
|
|
|
|
users, it means you can sync your music, contacts, photos, etc.
|
|
|
|
over USB.")
|
|
|
|
(license license:gpl2+)))
|
|
|
|
|
2015-02-08 14:32:35 +01:00
|
|
|
(define-public libmtp
|
|
|
|
(package
|
|
|
|
(name "libmtp")
|
2018-11-05 19:23:27 +01:00
|
|
|
(version "1.1.16")
|
2015-02-08 14:32:35 +01:00
|
|
|
(source (origin
|
|
|
|
(method url-fetch)
|
2016-07-21 08:35:30 +02:00
|
|
|
(uri (string-append "mirror://sourceforge/libmtp/libmtp/" version
|
2015-02-08 14:32:35 +01:00
|
|
|
"/libmtp-" version ".tar.gz"))
|
|
|
|
(sha256
|
2016-07-10 18:00:05 +02:00
|
|
|
(base32
|
2018-11-05 19:23:27 +01:00
|
|
|
"185vh9bds6dcy00ycggg69g4v7m3api40zv8vrcfb3fk3vfzjs2v"))))
|
2015-02-08 14:32:35 +01:00
|
|
|
(build-system gnu-build-system)
|
|
|
|
(native-inputs
|
|
|
|
`(("pkg-config" ,pkg-config)))
|
2015-07-26 15:39:28 +02:00
|
|
|
(propagated-inputs
|
|
|
|
;; libmtp.pc refers to all these.
|
2015-02-08 14:32:35 +01:00
|
|
|
`(("libgcrypt" ,libgcrypt)
|
|
|
|
("libusb" ,libusb)))
|
|
|
|
(arguments
|
|
|
|
`(#:configure-flags
|
|
|
|
(list (string-append "--with-udev="
|
|
|
|
(assoc-ref %outputs "out")
|
|
|
|
"/lib/udev"))))
|
|
|
|
(home-page "http://libmtp.sourceforge.net/")
|
|
|
|
(synopsis "Library implementing the Media Transfer Protocol")
|
|
|
|
(description "Libmtp implements an MTP (Media Transfer Protocol)
|
|
|
|
initiator, which means that it initiates MTP sessions with devices. The
|
|
|
|
devices responding are known as MTP responders. Libmtp runs on devices
|
|
|
|
with a USB host controller interface. It implements MTP Basic, which was
|
|
|
|
proposed for standardization.")
|
|
|
|
;; COPYING contains lgpl2.1, while files headers give
|
|
|
|
;; "GNU Lesser General Public License as published by the Free Software
|
|
|
|
;; Foundation; either version 2 of the License, or (at your option) any
|
|
|
|
;; later version."
|
2018-08-05 15:48:18 +02:00
|
|
|
(license license:lgpl2.1+)))
|
2015-09-06 23:07:10 +02:00
|
|
|
|
|
|
|
(define-public gmtp
|
|
|
|
(package
|
|
|
|
(name "gmtp")
|
2018-02-11 16:19:41 +01:00
|
|
|
(version "1.3.11")
|
2015-09-06 23:07:10 +02:00
|
|
|
(source (origin
|
|
|
|
(method url-fetch)
|
2016-07-21 08:35:30 +02:00
|
|
|
(uri (string-append "mirror://sourceforge/gmtp/gMTP-" version
|
2015-09-06 23:07:10 +02:00
|
|
|
"/gmtp-" version ".tar.gz"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
2018-02-11 16:19:41 +01:00
|
|
|
"04q6byyq002fhzkc2rkkahwh5b6272xakaj4m3vwm8la8jf0r0ss"))))
|
2015-09-06 23:07:10 +02:00
|
|
|
(build-system glib-or-gtk-build-system)
|
|
|
|
(arguments
|
|
|
|
'(#:configure-flags
|
|
|
|
(let ((libid3tag (assoc-ref %build-inputs "libid3tag")))
|
|
|
|
(list
|
|
|
|
;; libid3tag provides no .pc file, so pkg-config fails to find them.
|
|
|
|
(string-append "ID3TAG_CFLAGS=-I" libid3tag "/include")
|
|
|
|
(string-append "ID3TAG_LIBS=-L" libid3tag "/lib -lid3tag -lz")))))
|
|
|
|
(inputs
|
|
|
|
`(("gtk+" ,gtk+)
|
|
|
|
("flac" ,flac)
|
|
|
|
("libvorbis" ,libvorbis)
|
|
|
|
("libid3tag" ,libid3tag)
|
|
|
|
("libmtp" ,libmtp)))
|
|
|
|
(native-inputs
|
|
|
|
`(("pkg-config" ,pkg-config)))
|
|
|
|
(home-page "http://gmtp.sourceforge.net/")
|
|
|
|
(synopsis "Simple graphical MTP client")
|
|
|
|
(description "gMTP is a simple graphical client for the Media Transfer Protocol
|
|
|
|
(MTP), which allows media files to be transferred to and from many portable
|
|
|
|
devices.")
|
2018-08-05 15:48:18 +02:00
|
|
|
(license license:bsd-3)))
|
2016-10-28 19:36:05 +02:00
|
|
|
|
|
|
|
(define-public hidapi
|
|
|
|
(package
|
|
|
|
(name "hidapi")
|
|
|
|
(version "0.8.0-rc1")
|
|
|
|
(source (origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append "https://github.com/signal11/hidapi/archive/hidapi-"
|
|
|
|
version ".tar.gz"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
|
|
|
"0qdgyj9rgb7n0nk3ghfswrhzzknxqn4ibn3wj8g4r828pw07451w"))))
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
(inputs
|
|
|
|
`(("libusb" ,libusb)
|
|
|
|
("udev" ,eudev)))
|
|
|
|
(native-inputs
|
|
|
|
`(("autoconf" ,autoconf)
|
|
|
|
("automake" ,automake)
|
|
|
|
("libtool" ,libtool)
|
|
|
|
("pkg-config" ,pkg-config)))
|
|
|
|
(home-page "http://www.signal11.us/oss/hidapi/")
|
|
|
|
(synopsis "HID API library")
|
|
|
|
(description
|
|
|
|
"HIDAPI is a library which allows an application to interface with USB and Bluetooth
|
|
|
|
HID-Class devices.")
|
|
|
|
;; HIDAPI can be used under one of three licenses.
|
2018-08-05 15:48:18 +02:00
|
|
|
(license (list license:gpl3
|
|
|
|
license:bsd-3
|
|
|
|
(license:non-copyleft "file://LICENSE-orig.txt")))))
|
2017-12-27 20:54:19 +01:00
|
|
|
|
|
|
|
(define-public python-hidapi
|
|
|
|
(package
|
|
|
|
(name "python-hidapi")
|
|
|
|
(version "0.7.99.post21")
|
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (pypi-uri "hidapi" version))
|
|
|
|
(sha256
|
|
|
|
(base32
|
|
|
|
"15ws59zdrxahf3k7z5rcrwc4jgv1307anif8ixm2cyb9ask1mgp0"))
|
|
|
|
(modules '((guix build utils)))
|
|
|
|
(snippet
|
|
|
|
;; Remove bundled libraries.
|
|
|
|
'(begin
|
|
|
|
(delete-file-recursively "hidapi")
|
|
|
|
#t))))
|
|
|
|
(build-system python-build-system)
|
|
|
|
(arguments
|
|
|
|
`(#:phases
|
|
|
|
(modify-phases %standard-phases
|
|
|
|
(add-after 'unpack 'patch-configuration
|
|
|
|
(lambda* (#:key inputs #:allow-other-keys)
|
|
|
|
(substitute* "setup.py"
|
|
|
|
(("'/usr/include/libusb-1.0'")
|
|
|
|
(string-append "'" (assoc-ref inputs "libusb")
|
|
|
|
"/include/libusb-1.0'"))
|
|
|
|
(("'/usr/include/hidapi'")
|
|
|
|
(string-append "'" (assoc-ref inputs "hidapi")
|
|
|
|
"/include/hidapi'")))
|
|
|
|
#t))
|
|
|
|
;; XXX Necessary because python-build-system drops the arguments.
|
|
|
|
(replace 'build
|
|
|
|
(lambda _
|
|
|
|
(invoke "python" "setup.py" "build" "--with-system-hidapi")))
|
|
|
|
(replace 'check
|
|
|
|
(lambda _
|
|
|
|
(invoke "python" "setup.py" "test" "--with-system-hidapi")))
|
|
|
|
(replace 'install
|
|
|
|
(lambda* (#:key outputs #:allow-other-keys)
|
|
|
|
(invoke "python" "setup.py" "install" "--with-system-hidapi"
|
|
|
|
(string-append "--prefix=" (assoc-ref outputs "out"))
|
|
|
|
"--single-version-externally-managed" "--root=/"))))))
|
|
|
|
(inputs
|
|
|
|
`(("hidapi" ,hidapi)
|
|
|
|
("libusb" ,libusb)
|
|
|
|
("eudev" ,eudev)))
|
|
|
|
(native-inputs
|
|
|
|
`(("python-cython" ,python-cython)))
|
|
|
|
(home-page "https://github.com/trezor/cython-hidapi")
|
|
|
|
(synopsis "Cython interface to hidapi")
|
|
|
|
(description "This package provides a Cython interface to @code{hidapi}.")
|
|
|
|
;; The library can be used under either of these licenses.
|
2018-08-05 15:48:18 +02:00
|
|
|
(license (list license:gpl3
|
|
|
|
license:bsd-3
|
|
|
|
(license:non-copyleft
|
2017-12-27 20:54:19 +01:00
|
|
|
"https://github.com/trezor/cython-hidapi/blob/master/LICENSE-orig.txt"
|
|
|
|
"You are free to use cython-hidapi code for any purpose.")))))
|
|
|
|
|
|
|
|
(define-public python2-hidapi
|
|
|
|
(package-with-python2 python-hidapi))
|