wipe: fix build on x86_64-darwin

This commit is contained in:
alfarel
2024-12-28 22:57:28 -05:00
parent c73c534b9c
commit 1c0c13464d
+4
View File
@@ -16,6 +16,10 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [ autoreconfHook ];
# fdatasync is undocumented on darwin with no header file which breaks the build.
# use fsync instead.
configureFlags = lib.optional stdenv.hostPlatform.isDarwin "ac_cv_func_fdatasync=no";
patches = [ ./fix-install.patch ];
meta = with lib; {