about summary refs log tree commit diff
path: root/pkgs/tools/filesystems/squashfs-tools-ng
diff options
context:
space:
mode:
authorSandro <sandro.jaeckel@gmail.com>2021-04-22 03:27:36 +0200
committerGitHub <noreply@github.com>2021-04-22 03:27:36 +0200
commit2df2e5f330a015c2f3c807441e41c334f00f09e6 (patch)
treed5670b8e197b6a64c7c222869f9f4be023faf9d9 /pkgs/tools/filesystems/squashfs-tools-ng
parent3eb8f4d15c6b3fbb0170045df40b43cfd07d5d10 (diff)
parent80651c123ee99f36f478e4248024a0e53ac7ada7 (diff)
downloadnixlib-2df2e5f330a015c2f3c807441e41c334f00f09e6.tar
nixlib-2df2e5f330a015c2f3c807441e41c334f00f09e6.tar.gz
nixlib-2df2e5f330a015c2f3c807441e41c334f00f09e6.tar.bz2
nixlib-2df2e5f330a015c2f3c807441e41c334f00f09e6.tar.lz
nixlib-2df2e5f330a015c2f3c807441e41c334f00f09e6.tar.xz
nixlib-2df2e5f330a015c2f3c807441e41c334f00f09e6.tar.zst
nixlib-2df2e5f330a015c2f3c807441e41c334f00f09e6.zip
Merge pull request #118269 from midchildan/feat/fuse/add-darwin
Diffstat (limited to 'pkgs/tools/filesystems/squashfs-tools-ng')
-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 bb7df1aa9403..265495389b01 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;
   };
 }