summary refs log tree commit diff
diff options
context:
space:
mode:
authorSilvan Mosberger <infinisil@icloud.com>2019-04-16 13:50:46 +0200
committerSilvan Mosberger <infinisil@icloud.com>2019-04-16 20:00:45 +0200
commit768e9b1505b1e5bf81f310349e919794127596ba (patch)
tree5f3de1674861940311ff59ae8fc9aca931440e79
parent8d5252be8263f64a5f3ce9f091a1360725f043e4 (diff)
downloadnixpkgs-768e9b1505b1e5bf81f310349e919794127596ba.tar
nixpkgs-768e9b1505b1e5bf81f310349e919794127596ba.tar.gz
nixpkgs-768e9b1505b1e5bf81f310349e919794127596ba.tar.bz2
nixpkgs-768e9b1505b1e5bf81f310349e919794127596ba.tar.lz
nixpkgs-768e9b1505b1e5bf81f310349e919794127596ba.tar.xz
nixpkgs-768e9b1505b1e5bf81f310349e919794127596ba.tar.zst
nixpkgs-768e9b1505b1e5bf81f310349e919794127596ba.zip
ideviceinstaller: 2018-06-01 -> 2018-10-01
-rw-r--r--pkgs/tools/misc/ideviceinstaller/default.nix10
1 files changed, 5 insertions, 5 deletions
diff --git a/pkgs/tools/misc/ideviceinstaller/default.nix b/pkgs/tools/misc/ideviceinstaller/default.nix
index 957267ae10e..15af413a999 100644
--- a/pkgs/tools/misc/ideviceinstaller/default.nix
+++ b/pkgs/tools/misc/ideviceinstaller/default.nix
@@ -2,15 +2,15 @@
 
 stdenv.mkDerivation rec {
   pname = "ideviceinstaller";
-  version = "2018-06-01";
+  version = "2018-10-01";
 
   name = "${pname}-${version}";
 
   src = fetchFromGitHub {
     owner = "libimobiledevice";
     repo = pname;
-    rev = "f7988de8279051f3d2d7973b8d7f2116aa5d9317";
-    sha256 = "1vmdvbwnjz3f90b9bqq7jg04q7awsbi9pmkvgwal8xdpp6jcwkwx";
+    rev = "f14def7cd9303a0fe622732fae9830ae702fdd7c";
+    sha256 = "1biwhbldvgdhn8ygp7w79ca0rivzdjpykr76pyhy7r2fa56mrwq8";
   };
 
   nativeBuildInputs = [ autoreconfHook pkgconfig usbmuxd libimobiledevice libzip ];
@@ -19,12 +19,12 @@ stdenv.mkDerivation rec {
     homepage = https://github.com/libimobiledevice/ideviceinstaller;
     description = "List/modify installed apps of iOS devices";
     longDescription = ''
-      ideviceinstaller is a tool to interact with the installation_proxy 
+      ideviceinstaller is a tool to interact with the installation_proxy
       of an iOS device allowing to install, upgrade, uninstall, archive, restore
       and enumerate installed or archived apps.
     '';
     license = licenses.gpl2;
     platforms = platforms.linux;
-    maintainers = with maintainers; [ aristid ];
+    maintainers = with maintainers; [ aristid infinisil ];
   };
 }