s3fs: fix build on darwin

`s3fs` code uses two constants (UTIME_NOW and UTIME_OMIT) that were not
defined in the darwin sdk headers until sdk version 10.13.
This commit is contained in:
Dave Nicponski 2023-02-13 19:15:04 -05:00
parent c6a1db8ef2
commit c0fe996500
2 changed files with 1 additions and 2 deletions

View File

@ -23,7 +23,6 @@ stdenv.mkDerivation rec {
'';
meta = with lib; {
broken = stdenv.isDarwin;
description = "Mount an S3 bucket as filesystem through FUSE";
license = licenses.gpl2;
platforms = platforms.linux ++ platforms.darwin;

View File

@ -11644,7 +11644,7 @@ with pkgs;
s3bro = callPackage ../tools/admin/s3bro { };
s3fs = callPackage ../tools/filesystems/s3fs { };
s3fs = darwin.apple_sdk_11_0.callPackage ../tools/filesystems/s3fs { };
s3cmd = python3Packages.callPackage ../tools/networking/s3cmd { };