about summary refs log tree commit diff
path: root/pkgs/tools/misc/idevicerestore
diff options
context:
space:
mode:
authorMarc Seeger <mseeger@fb.com>2020-12-02 12:16:59 -0800
committerMarc Seeger <mseeger@fb.com>2020-12-02 12:16:59 -0800
commit7319dc20c941969e052f1eddd94a43e1210389cb (patch)
tree6ab402e3b14b0a2097755b64fa119ce4105450b1 /pkgs/tools/misc/idevicerestore
parentcbd8d2bb3b518bd96a7f44630ba6260085057b11 (diff)
idevicerestore: Add darwin support.
Diffstat (limited to 'pkgs/tools/misc/idevicerestore')
-rw-r--r--pkgs/tools/misc/idevicerestore/default.nix7
1 files changed, 4 insertions, 3 deletions
diff --git a/pkgs/tools/misc/idevicerestore/default.nix b/pkgs/tools/misc/idevicerestore/default.nix
index 5a60641144195..ab22e413b0037 100644
--- a/pkgs/tools/misc/idevicerestore/default.nix
+++ b/pkgs/tools/misc/idevicerestore/default.nix
@@ -4,6 +4,7 @@
 , libirecovery
 , libzip
 , libusbmuxd
+, IOKit
 }:
 
 stdenv.mkDerivation rec {
@@ -31,7 +32,7 @@ stdenv.mkDerivation rec {
     # Not listing other dependencies specified in
     # https://github.com/libimobiledevice/idevicerestore/blob/8a882038b2b1e022fbd19eaf8bea51006a373c06/README#L20
     # because they are inherited `libimobiledevice`.
-  ];
+  ] ++ stdenv.lib.optionals stdenv.isDarwin [ IOKit ];
 
   meta = with stdenv.lib; {
     homepage = "https://github.com/libimobiledevice/idevicerestore";
@@ -51,8 +52,8 @@ stdenv.mkDerivation rec {
       This will download and restore a device to the latest firmware available.
     '';
     license = licenses.lgpl21Plus;
-    # configure.ac suggests it should work for darwin and mingw as well but not tried yet
-    platforms = platforms.linux;
+    # configure.ac suggests it should work for mingw as well but not tried yet
+    platforms = platforms.linux ++ platforms.darwin;
     maintainers = with maintainers; [ nh2 ];
   };
 }