Merge pull request #262621 from NetaliDev/ideviceinstaller-fix

ideviceinstaller: fix build
This commit is contained in:
Silvan Mosberger 2023-10-24 02:30:29 +02:00 committed by GitHub
commit 32e8db24d5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -30,6 +30,11 @@ stdenv.mkDerivation rec {
libzip
];
# the package uses zip_get_num_entries, which is deprecated
env.NIX_CFLAGS_COMPILE = toString [
"-Wno-error=deprecated-declarations"
];
preAutoreconf = ''
export RELEASE_VERSION=${version}
'';