summary refs log tree commit diff
path: root/pkgs/tools/misc
diff options
context:
space:
mode:
authorMarc Seeger <mseeger@fb.com>2020-12-06 08:23:12 -0800
committerSandro Jäckel <sandro.jaeckel@gmail.com>2020-12-07 10:17:23 +0100
commitf813e9382c597a48bad9a02420b247e96e59220e (patch)
tree684ad59a6536d61e81bef20d397297815b62a22e /pkgs/tools/misc
parent666b9957216ed771ac78e863a18749a8723ab538 (diff)
downloadnixpkgs-f813e9382c597a48bad9a02420b247e96e59220e.tar
nixpkgs-f813e9382c597a48bad9a02420b247e96e59220e.tar.gz
nixpkgs-f813e9382c597a48bad9a02420b247e96e59220e.tar.bz2
nixpkgs-f813e9382c597a48bad9a02420b247e96e59220e.tar.lz
nixpkgs-f813e9382c597a48bad9a02420b247e96e59220e.tar.xz
nixpkgs-f813e9382c597a48bad9a02420b247e96e59220e.tar.zst
nixpkgs-f813e9382c597a48bad9a02420b247e96e59220e.zip
ideviceinstaller: 2018-10-01 -> 1.1.1 (and add darwin support)
Diffstat (limited to 'pkgs/tools/misc')
-rw-r--r--pkgs/tools/misc/ideviceinstaller/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/tools/misc/ideviceinstaller/default.nix b/pkgs/tools/misc/ideviceinstaller/default.nix
index 4046d775a54..3dd53658036 100644
--- a/pkgs/tools/misc/ideviceinstaller/default.nix
+++ b/pkgs/tools/misc/ideviceinstaller/default.nix
@@ -2,13 +2,13 @@
 
 stdenv.mkDerivation rec {
   pname = "ideviceinstaller";
-  version = "2018-10-01";
+  version = "1.1.1";
 
   src = fetchFromGitHub {
     owner = "libimobiledevice";
     repo = pname;
-    rev = "f14def7cd9303a0fe622732fae9830ae702fdd7c";
-    sha256 = "1biwhbldvgdhn8ygp7w79ca0rivzdjpykr76pyhy7r2fa56mrwq8";
+    rev = version;
+    sha256 = "1xp0sjgfx2z19x9mxihn18ybsmrnrcfc55zbh5a44g3vrmagmlzz";
   };
 
   nativeBuildInputs = [ autoreconfHook pkgconfig usbmuxd libimobiledevice libzip ];
@@ -22,7 +22,7 @@ stdenv.mkDerivation rec {
       and enumerate installed or archived apps.
     '';
     license = licenses.gpl2;
-    platforms = platforms.linux;
+    platforms = platforms.linux ++ platforms.darwin;
     maintainers = with maintainers; [ aristid infinisil ];
   };
 }