mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-08 13:13:09 +00:00
Merge pull request #262621 from NetaliDev/ideviceinstaller-fix
ideviceinstaller: fix build
This commit is contained in:
commit
32e8db24d5
@ -30,6 +30,11 @@ stdenv.mkDerivation rec {
|
|||||||
libzip
|
libzip
|
||||||
];
|
];
|
||||||
|
|
||||||
|
# the package uses zip_get_num_entries, which is deprecated
|
||||||
|
env.NIX_CFLAGS_COMPILE = toString [
|
||||||
|
"-Wno-error=deprecated-declarations"
|
||||||
|
];
|
||||||
|
|
||||||
preAutoreconf = ''
|
preAutoreconf = ''
|
||||||
export RELEASE_VERSION=${version}
|
export RELEASE_VERSION=${version}
|
||||||
'';
|
'';
|
||||||
|
Loading…
Reference in New Issue
Block a user