mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-02 19:14:14 +00:00
571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
67 lines
1.7 KiB
Nix
67 lines
1.7 KiB
Nix
{ lib
|
|
, stdenv
|
|
, fetchFromGitHub
|
|
, autoreconfHook
|
|
, pkg-config
|
|
, curl
|
|
, libimobiledevice
|
|
, libirecovery
|
|
, libzip
|
|
, libusbmuxd
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "idevicerestore";
|
|
version = "1.0.0+date=2023-05-23";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "libimobiledevice";
|
|
repo = pname;
|
|
rev = "609f7f058487596597e8e742088119fdd46729df";
|
|
hash = "sha256-VXtXAitPC1+pxZlkGBg+u6yYhyM/jVpSgDO/6dXh5V4=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
autoreconfHook
|
|
pkg-config
|
|
];
|
|
|
|
buildInputs = [
|
|
curl
|
|
libimobiledevice
|
|
libirecovery
|
|
libzip
|
|
libusbmuxd
|
|
# Not listing other dependencies specified in
|
|
# https://github.com/libimobiledevice/idevicerestore/blob/8a882038b2b1e022fbd19eaf8bea51006a373c06/README#L20
|
|
# because they are inherited `libimobiledevice`.
|
|
];
|
|
|
|
preAutoreconf = ''
|
|
export RELEASE_VERSION=${version}
|
|
'';
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/libimobiledevice/idevicerestore";
|
|
description = "Restore/upgrade firmware of iOS devices";
|
|
longDescription = ''
|
|
The idevicerestore tool allows to restore firmware files to iOS devices.
|
|
|
|
It is a full reimplementation of all granular steps which are performed during
|
|
restore of a firmware to a device.
|
|
|
|
In general, upgrades and downgrades are possible, however subject to
|
|
availability of SHSH blobs from Apple for signing the firmare files.
|
|
|
|
To restore a device to some firmware, simply run the following:
|
|
$ sudo idevicerestore -l
|
|
|
|
This will download and restore a device to the latest firmware available.
|
|
'';
|
|
license = licenses.lgpl21Plus;
|
|
platforms = platforms.unix;
|
|
maintainers = with maintainers; [ nh2 ];
|
|
mainProgram = "idevicerestore";
|
|
};
|
|
}
|