gnu: Add libplist.

* gnu/packages/libusb.scm (libplist): New variable.
master
Ricardo Wurmus 2018-08-05 15:50:23 +02:00
parent 3ecb1d0552
commit 1b95533740
No known key found for this signature in database
GPG Key ID: 197A5888235FACAC
1 changed files with 24 additions and 1 deletions

View File

@ -2,7 +2,7 @@
;;; Copyright © 2012 Nikita Karetnikov <nikita@karetnikov.org>
;;; Copyright © 2015 Andreas Enge <andreas@enge.fr>
;;; Copyright © 2015 Andy Wingo <wingo@igalia.com>
;;; Copyright © 2015, 2016, 2017 Ricardo Wurmus <rekado@elephly.net>
;;; Copyright © 2015, 2016, 2017, 2018 Ricardo Wurmus <rekado@elephly.net>
;;; Copyright © 2016 Efraim Flashner <efraim@flashner.co.il>
;;; Copyright © 2016 Theodoros Foradis <theodoros@foradis.org>
;;; Copyright © 2017 Jonathan Brielmaier <jonathan.brielmaier@web.de>
@ -301,6 +301,29 @@ wrapper for accessing libusb-1.0.")
(define-public python2-pyusb
(package-with-python2 python-pyusb))
(define-public libplist
(package
(name "libplist")
(version "2.0.0")
(source (origin
(method url-fetch)
(uri (string-append "http://www.libimobiledevice.org/downloads/"
"libplist-" version ".tar.bz2"))
(sha256
(base32
"00pnh9zf3iwdji2faccns7vagbmbrwbj9a8zp9s53a6rqaa9czis"))))
(build-system gnu-build-system)
(inputs
`(("python" ,python)))
(native-inputs
`(("pkg-config" ,pkg-config)
("python-cython" ,python-cython)))
(home-page "http://www.libimobiledevice.org/")
(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+)))
(define-public libmtp
(package
(name "libmtp")