ideviceinstaller: 2018-10-01 -> 1.1.1 (and add darwin support)

This commit is contained in:
Marc Seeger 2020-12-06 08:23:12 -08:00 committed by Sandro Jäckel
parent 666b995721
commit f813e9382c
No known key found for this signature in database
GPG Key ID: 3AF5A43A3EECC2E5

View File

@ -2,13 +2,13 @@
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "ideviceinstaller"; pname = "ideviceinstaller";
version = "2018-10-01"; version = "1.1.1";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "libimobiledevice"; owner = "libimobiledevice";
repo = pname; repo = pname;
rev = "f14def7cd9303a0fe622732fae9830ae702fdd7c"; rev = version;
sha256 = "1biwhbldvgdhn8ygp7w79ca0rivzdjpykr76pyhy7r2fa56mrwq8"; sha256 = "1xp0sjgfx2z19x9mxihn18ybsmrnrcfc55zbh5a44g3vrmagmlzz";
}; };
nativeBuildInputs = [ autoreconfHook pkgconfig usbmuxd libimobiledevice libzip ]; nativeBuildInputs = [ autoreconfHook pkgconfig usbmuxd libimobiledevice libzip ];
@ -22,7 +22,7 @@ stdenv.mkDerivation rec {
and enumerate installed or archived apps. and enumerate installed or archived apps.
''; '';
license = licenses.gpl2; license = licenses.gpl2;
platforms = platforms.linux; platforms = platforms.linux ++ platforms.darwin;
maintainers = with maintainers; [ aristid infinisil ]; maintainers = with maintainers; [ aristid infinisil ];
}; };
} }