about summary refs log tree commit diff
path: root/pkgs/tools/filesystems
diff options
context:
space:
mode:
authormidchildan <git@midchildan.org>2021-03-28 22:25:06 +0900
committermidchildan <git@midchildan.org>2021-04-20 00:51:42 +0900
commitcbc730d14422f36239a5af07f9ad6425eb698730 (patch)
tree8a532ec9208b4106e5f98daf7a46102d9c070612 /pkgs/tools/filesystems
parent67db526c02b25af7b9ada65dc86586159b78ab26 (diff)
squashfs-tools-ng: document the specific blocker for a darwin build
Diffstat (limited to 'pkgs/tools/filesystems')
-rw-r--r--pkgs/tools/filesystems/squashfs-tools-ng/default.nix11
1 files changed, 11 insertions, 0 deletions
diff --git a/pkgs/tools/filesystems/squashfs-tools-ng/default.nix b/pkgs/tools/filesystems/squashfs-tools-ng/default.nix
index 322f57fdca926..0763be782d8af 100644
--- a/pkgs/tools/filesystems/squashfs-tools-ng/default.nix
+++ b/pkgs/tools/filesystems/squashfs-tools-ng/default.nix
@@ -19,6 +19,17 @@ stdenv.mkDerivation rec {
     license = licenses.gpl3Plus;
     maintainers = with maintainers; [ qyliss ];
     platforms = platforms.unix;
+
+    # TODO: Remove once nixpkgs uses newer SDKs that supports '*at' functions.
+    # Probably macOS SDK 10.13 or later. Check the current version in
+    # ../../../../os-specific/darwin/apple-sdk/default.nix
+    #
+    # From the build logs:
+    #
+    # > Undefined symbols for architecture x86_64:
+    # >   "_utimensat", referenced from:
+    # >       _set_attribs in rdsquashfs-restore_fstree.o
+    # > ld: symbol(s) not found for architecture x86_64
     broken = stdenv.isDarwin;
   };
 }