mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-04-14 00:37:38 +00:00
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:
parent
c6a1db8ef2
commit
c0fe996500
@ -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;
|
||||
|
@ -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 { };
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user