2022-05-23 01:18:03 +00:00
|
|
|
{ lib
|
|
|
|
, stdenv
|
|
|
|
, fetchFromGitHub
|
|
|
|
, autoreconfHook
|
|
|
|
, pkg-config
|
|
|
|
, usbmuxd
|
|
|
|
, libimobiledevice
|
|
|
|
, libzip
|
|
|
|
}:
|
2018-12-27 19:04:52 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "ideviceinstaller";
|
2023-06-05 18:11:29 +00:00
|
|
|
version = "1.1.1+date=2023-04-30";
|
2018-12-27 19:04:52 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "libimobiledevice";
|
|
|
|
repo = pname;
|
2023-06-05 18:11:29 +00:00
|
|
|
rev = "71ec5eaa30d2780c2614b6b227a2229ea3aeb1e9";
|
|
|
|
hash = "sha256-YsQwAlt71vouYJzXl0P7b3fG/MfcwI947GtvN4g3/gM=";
|
2018-12-27 19:04:52 +00:00
|
|
|
};
|
|
|
|
|
2022-05-23 01:18:03 +00:00
|
|
|
nativeBuildInputs = [
|
|
|
|
autoreconfHook
|
|
|
|
pkg-config
|
|
|
|
];
|
|
|
|
|
|
|
|
buildInputs = [
|
|
|
|
usbmuxd
|
|
|
|
libimobiledevice
|
|
|
|
libzip
|
|
|
|
];
|
2018-12-27 19:04:52 +00:00
|
|
|
|
2023-10-21 22:19:32 +00:00
|
|
|
# the package uses zip_get_num_entries, which is deprecated
|
|
|
|
env.NIX_CFLAGS_COMPILE = toString [
|
|
|
|
"-Wno-error=deprecated-declarations"
|
|
|
|
];
|
|
|
|
|
2023-06-05 18:11:29 +00:00
|
|
|
preAutoreconf = ''
|
|
|
|
export RELEASE_VERSION=${version}
|
|
|
|
'';
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://github.com/libimobiledevice/ideviceinstaller";
|
2018-12-27 19:04:52 +00:00
|
|
|
description = "List/modify installed apps of iOS devices";
|
|
|
|
longDescription = ''
|
2019-04-16 11:50:46 +00:00
|
|
|
ideviceinstaller is a tool to interact with the installation_proxy
|
2018-12-27 19:04:52 +00:00
|
|
|
of an iOS device allowing to install, upgrade, uninstall, archive, restore
|
|
|
|
and enumerate installed or archived apps.
|
|
|
|
'';
|
2022-05-23 01:18:03 +00:00
|
|
|
license = licenses.gpl2Plus;
|
|
|
|
platforms = platforms.unix;
|
2024-04-09 15:26:37 +00:00
|
|
|
maintainers = with maintainers; [ aristid ];
|
2023-11-27 01:17:53 +00:00
|
|
|
mainProgram = "ideviceinstaller";
|
2018-12-27 19:04:52 +00:00
|
|
|
};
|
|
|
|
}
|