[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
11/11: gnu: Add ideviceinstaller.
From: |
guix-commits |
Subject: |
11/11: gnu: Add ideviceinstaller. |
Date: |
Thu, 22 Sep 2022 01:38:44 -0400 (EDT) |
roptat pushed a commit to branch master
in repository guix.
commit 04cad8e29ed85be838921c7fa05f7c5bce94b6d1
Author: Jacob Hrbek <kreyren@rixotstudio.cz>
AuthorDate: Fri Sep 16 23:41:07 2022 +0000
gnu: Add ideviceinstaller.
* gnu/packages/libusb (ideviceinstaller): New variable.
Signed-off-by: Julien Lepiller <julien@lepiller.eu>
---
gnu/packages/libusb.scm | 24 ++++++++++++++++++++++++
1 file changed, 24 insertions(+)
diff --git a/gnu/packages/libusb.scm b/gnu/packages/libusb.scm
index 8a5967f7b4..6183598829 100644
--- a/gnu/packages/libusb.scm
+++ b/gnu/packages/libusb.scm
@@ -11,6 +11,7 @@
;;; Copyright © 2020 Marius Bakke <mbakke@fastmail.com>
;;; Copyright © 2020 Christopher Howard <christopher@librehacker.com>
;;; Copyright © 2021 Guillaume Le Vaillant <glv@posteo.net>
+;;; Copyright © 2022 Jacob Hrbek <kreyren@rixotstudio.cz>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -41,6 +42,7 @@
#:use-module (guix build-system glib-or-gtk)
#:use-module (guix build-system python)
#:use-module (gnu packages autotools)
+ #:use-module (gnu packages compression)
#:use-module (gnu packages gnupg)
#:use-module (gnu packages gtk)
#:use-module (gnu packages java)
@@ -339,6 +341,28 @@ unmodified CircuitPython code to run on the host computer
and interact with
I2C and SPI devices attached to the USB Hub.")
(license license:expat)))
+(define-public ideviceinstaller
+ (package
+ (name "ideviceinstaller")
+ (version "1.1.1")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/libimobiledevice/ideviceinstaller")
+ (commit version)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "1xp0sjgfx2z19x9mxihn18ybsmrnrcfc55zbh5a44g3vrmagmlzz"))))
+ (build-system gnu-build-system)
+ (native-inputs (list autoconf automake libtool pkg-config))
+ (inputs (list libimobiledevice libzip))
+ (home-page "https://libimobiledevice.org/")
+ (synopsis "CLI Tool to manage apps and app archives on iOS devices")
+ (description "This package provides an interface to manage IPA format
+files and applications for iOS devices, it's written in C")
+ (license license:gpl2)))
+
(define-public libplist
(package
(name "libplist")
- branch master updated (33d4992b69 -> 04cad8e29e), guix-commits, 2022/09/22
- 05/11: gnu: coq-mathcomp: Update to 1.15.0., guix-commits, 2022/09/22
- 08/11: gnu: ocaml-linenoise: Update to 1.4.0., guix-commits, 2022/09/22
- 11/11: gnu: Add ideviceinstaller.,
guix-commits <=
- 01/11: gnu: Add ocaml-lablgtk3-sourceview3., guix-commits, 2022/09/22
- 09/11: gnu: ocaml-uunf: Update to 15.0.0., guix-commits, 2022/09/22
- 06/11: gnu: coq-interval: Update to 4.5.2., guix-commits, 2022/09/22
- 04/11: gnu: coq-gappa: Update to 1.5.2., guix-commits, 2022/09/22
- 02/11: gnu: lablgtk3: Update to 3.1.2., guix-commits, 2022/09/22
- 07/11: gnu: coq: Update to 8.16.0., guix-commits, 2022/09/22
- 10/11: gnu: ocaml-uucp: Update to 15.0.0., guix-commits, 2022/09/22
- 03/11: gnu: coq-flocq: Update to 4.1.0., guix-commits, 2022/09/22