guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

01/02: gnu: Add libirecovery.


From: guix-commits
Subject: 01/02: gnu: Add libirecovery.
Date: Thu, 22 Sep 2022 15:36:16 -0400 (EDT)

roptat pushed a commit to branch master
in repository guix.

commit 5f9d9471c7ef522a04d9f197346c32d810afae81
Author: Jacob Hrbek <kreyren@rixotstudio.cz>
AuthorDate: Thu Sep 22 21:18:35 2022 +0200

    gnu: Add libirecovery.
    
    * gnu/packages/libusb.scm (libirecovery): New variable.
    
    Signed-off-by: Julien Lepiller <julien@lepiller.eu>
---
 gnu/packages/libusb.scm | 23 +++++++++++++++++++++++
 1 file changed, 23 insertions(+)

diff --git a/gnu/packages/libusb.scm b/gnu/packages/libusb.scm
index 6183598829..f0f4d32b5b 100644
--- a/gnu/packages/libusb.scm
+++ b/gnu/packages/libusb.scm
@@ -51,6 +51,7 @@
   #:use-module (gnu packages pkg-config)
   #:use-module (gnu packages python)
   #:use-module (gnu packages python-xyz)
+  #:use-module (gnu packages readline)
   #:use-module (gnu packages tls)
   #:use-module (gnu packages xiph))
 
@@ -363,6 +364,28 @@ I2C and SPI devices attached to the USB Hub.")
 files and applications for iOS devices, it's written in C")
     (license license:gpl2)))
 
+(define-public libirecovery
+  (package
+    (name "libirecovery")
+    (version "1.0.0")
+    (source (origin
+              (method git-fetch)
+              (uri (git-reference
+                     (url "https://github.com/libimobiledevice/libirecovery";)
+                     (commit version)))
+              (file-name (git-file-name name version))
+              (sha256
+               (base32
+                "0p9ncqnz5kb7qisw00ynvasw1hax5qx241h9nwppi2g544i9lbnr"))))
+    (build-system gnu-build-system)
+    (inputs (list readline libusb))
+    (native-inputs (list autoconf automake libtool pkg-config))
+    (home-page "https://libimobiledevice.org/";)
+    (synopsis "Communication library with iBoot/iBSS of iOS devices via USB")
+    (description "Libirecovery is a cross-platform library which implements
+communication to iBoot/iBSS found on Apple's iOS devices via USB.")
+    (license license:lgpl2.1)))
+
 (define-public libplist
   (package
     (name "libplist")



reply via email to

[Prev in Thread] Current Thread [Next in Thread]