11 stdenv.mkDerivation rec {
12 pname = "ideviceinstaller";
13 version = "1.1.1+date=2023-04-30";
15 src = fetchFromGitHub {
16 owner = "libimobiledevice";
18 rev = "71ec5eaa30d2780c2614b6b227a2229ea3aeb1e9";
19 hash = "sha256-YsQwAlt71vouYJzXl0P7b3fG/MfcwI947GtvN4g3/gM=";
33 # the package uses zip_get_num_entries, which is deprecated
34 env.NIX_CFLAGS_COMPILE = toString [
35 "-Wno-error=deprecated-declarations"
39 export RELEASE_VERSION=${version}
43 homepage = "https://github.com/libimobiledevice/ideviceinstaller";
44 description = "List/modify installed apps of iOS devices";
46 ideviceinstaller is a tool to interact with the installation_proxy
47 of an iOS device allowing to install, upgrade, uninstall, archive, restore
48 and enumerate installed or archived apps.
50 license = licenses.gpl2Plus;
51 platforms = platforms.unix;
52 maintainers = with maintainers; [ aristid ];
53 mainProgram = "ideviceinstaller";