rekado pushed a commit to branch wip-gnome3.30
in repository guix.
commit f9ca9874566483c397e5608e418f049315ce4548
Author: Ricardo Wurmus <[email protected]>
Date: Sun Aug 5 15:50:23 2018 +0200
gnu: Add libplist.
* gnu/packages/libusb.scm (libplist): New variable.
---
gnu/packages/libusb.scm | 25 ++++++++++++++++++++++++-
1 file changed, 24 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/libusb.scm b/gnu/packages/libusb.scm
index c953da1..37fa114 100644
--- a/gnu/packages/libusb.scm
+++ b/gnu/packages/libusb.scm
@@ -2,7 +2,7 @@
;;; Copyright © 2012 Nikita Karetnikov <[email protected]>
;;; Copyright © 2015 Andreas Enge <[email protected]>
;;; Copyright © 2015 Andy Wingo <[email protected]>
-;;; Copyright © 2015, 2016, 2017 Ricardo Wurmus <[email protected]>
+;;; Copyright © 2015, 2016, 2017, 2018 Ricardo Wurmus <[email protected]>
;;; Copyright © 2016 Efraim Flashner <[email protected]>
;;; Copyright © 2016 Theodoros Foradis <[email protected]>
;;; Copyright © 2017 Jonathan Brielmaier <[email protected]>
@@ -300,6 +300,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")