2022-05-23 01:23:04 +00:00
|
|
|
{ lib
|
|
|
|
, stdenv
|
|
|
|
, fetchFromGitHub
|
|
|
|
, autoreconfHook
|
|
|
|
, pkg-config
|
2020-04-03 23:10:59 +00:00
|
|
|
, libusb1
|
2019-04-13 22:42:57 +00:00
|
|
|
, readline
|
2022-05-23 01:23:04 +00:00
|
|
|
, libimobiledevice-glue
|
2019-04-13 22:42:57 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "libirecovery";
|
2023-06-05 17:41:39 +00:00
|
|
|
version = "1.1.0";
|
2022-05-23 01:23:04 +00:00
|
|
|
|
|
|
|
outputs = [ "out" "dev" ];
|
2019-04-13 22:42:57 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "libimobiledevice";
|
|
|
|
repo = pname;
|
2023-06-05 17:41:39 +00:00
|
|
|
rev = version;
|
|
|
|
hash = "sha256-84xwSOLwPU2Py6X2r6FYESxdc1EuuD6xHEXTUUEdvTE=";
|
2019-04-13 22:42:57 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [
|
2022-05-23 01:23:04 +00:00
|
|
|
autoreconfHook
|
2021-01-19 06:50:56 +00:00
|
|
|
pkg-config
|
2019-04-13 22:42:57 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
buildInputs = [
|
2020-04-03 23:10:59 +00:00
|
|
|
libusb1
|
2019-04-13 22:42:57 +00:00
|
|
|
readline
|
2022-05-23 01:23:04 +00:00
|
|
|
libimobiledevice-glue
|
2019-04-13 22:42:57 +00:00
|
|
|
];
|
|
|
|
|
2023-06-05 17:41:39 +00:00
|
|
|
preAutoreconf = ''
|
|
|
|
export RELEASE_VERSION=${version}
|
|
|
|
'';
|
|
|
|
|
2019-04-13 22:42:57 +00:00
|
|
|
# Packager note: Not clear whether this needs a NixOS configuration,
|
|
|
|
# as only the `idevicerestore` binary was tested so far (which worked
|
|
|
|
# without further configuration).
|
|
|
|
configureFlags = [
|
2019-09-03 16:38:57 +00:00
|
|
|
"--with-udevrulesdir=${placeholder "out"}/lib/udev/rules.d"
|
2019-04-13 22:42:57 +00:00
|
|
|
''--with-udevrule="OWNER=\"root\", GROUP=\"myusergroup\", MODE=\"0660\""''
|
|
|
|
];
|
|
|
|
|
2021-01-21 17:00:13 +00:00
|
|
|
meta = with lib; {
|
2019-04-13 22:42:57 +00:00
|
|
|
description = "Library and utility to talk to iBoot/iBSS via USB on Mac OS X, Windows, and Linux";
|
|
|
|
longDescription = ''
|
|
|
|
libirecovery is a cross-platform library which implements communication to
|
|
|
|
iBoot/iBSS found on Apple's iOS devices via USB. A command-line utility is also
|
|
|
|
provided.
|
|
|
|
'';
|
2022-05-05 00:52:27 +00:00
|
|
|
homepage = "https://github.com/libimobiledevice/libirecovery";
|
2022-05-23 01:23:04 +00:00
|
|
|
license = licenses.lgpl21Only;
|
2022-05-05 00:52:27 +00:00
|
|
|
maintainers = with maintainers; [ nh2 ];
|
|
|
|
mainProgram = "irecovery";
|
2022-05-23 01:23:04 +00:00
|
|
|
platforms = platforms.unix;
|
2019-04-13 22:42:57 +00:00
|
|
|
};
|
|
|
|
}
|