nixpkgs/pkgs/tools/misc/ideviceinstaller/default.nix

29 lines
970 B
Nix
Raw Normal View History

2021-01-17 03:51:22 +00:00
{ lib, stdenv, fetchFromGitHub, autoreconfHook, pkg-config, usbmuxd, libzip, libimobiledevice }:
2018-12-27 19:04:52 +00:00
stdenv.mkDerivation rec {
pname = "ideviceinstaller";
version = "1.1.1";
2018-12-27 19:04:52 +00:00
src = fetchFromGitHub {
owner = "libimobiledevice";
repo = pname;
rev = version;
sha256 = "1xp0sjgfx2z19x9mxihn18ybsmrnrcfc55zbh5a44g3vrmagmlzz";
2018-12-27 19:04:52 +00:00
};
2021-01-17 03:51:22 +00:00
nativeBuildInputs = [ autoreconfHook pkg-config usbmuxd libimobiledevice libzip ];
2018-12-27 19:04:52 +00:00
meta = with lib; {
homepage = "https://github.com/libimobiledevice/ideviceinstaller";
2018-12-27 19:04:52 +00:00
description = "List/modify installed apps of iOS devices";
longDescription = ''
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.
'';
license = licenses.gpl2;
platforms = platforms.linux ++ platforms.darwin;
maintainers = with maintainers; [ aristid infinisil ];
2018-12-27 19:04:52 +00:00
};
}