0
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-07-14 06:00:33 +03:00

gftp: workaround incompatible pointer types (#405643)

This commit is contained in:
Paul Haerle 2025-05-10 11:38:09 +02:00 committed by GitHub
commit 9dba4b6669
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -25,6 +25,10 @@ stdenv.mkDerivation rec {
hash = "sha256-0zdv2oYl24BXh61IGCWby/2CCkzNjLpDrAFc0J89Pw4=";
};
env.NIX_CFLAGS_COMPILE = toString [
"-Wno-incompatible-pointer-types" # https://github.com/masneyb/gftp/issues/178
];
nativeBuildInputs = [
autoconf
automake