idevicerestore: 1.0.0+date=2022-05-22 -> 1.0.0+date=2023-05-23

This commit is contained in:
Theodore Ni 2023-06-05 11:03:54 -07:00
parent a895c0030e
commit ef923ead41
No known key found for this signature in database
GPG Key ID: 48B67583BDDD4474

View File

@ -12,19 +12,15 @@
stdenv.mkDerivation rec {
pname = "idevicerestore";
version = "1.0.0+date=2022-05-22";
version = "1.0.0+date=2023-05-23";
src = fetchFromGitHub {
owner = "libimobiledevice";
repo = pname;
rev = "f80a876b3598de4eb551bafcb279947c527fae33";
hash = "sha256-I9zZQcZFd0hfeEJM7jltJtVJ6V5C5rA/S8gINiCnJdY=";
rev = "609f7f058487596597e8e742088119fdd46729df";
hash = "sha256-VXtXAitPC1+pxZlkGBg+u6yYhyM/jVpSgDO/6dXh5V4=";
};
postPatch = ''
echo '${version}' > .tarball-version
'';
nativeBuildInputs = [
autoreconfHook
pkg-config
@ -41,6 +37,10 @@ stdenv.mkDerivation rec {
# 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";