From 5f6e6516e0235719879509a29bed5cafc7921fa2 Mon Sep 17 00:00:00 2001 From: Monson Shao Date: Thu, 7 Jan 2021 19:51:42 +0800 Subject: [PATCH] darwin.hfs: mark broken --- .../darwin/apple-source-releases/hfs/default.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/pkgs/os-specific/darwin/apple-source-releases/hfs/default.nix b/pkgs/os-specific/darwin/apple-source-releases/hfs/default.nix index ab294b143d3..58f6fb8d7ab 100644 --- a/pkgs/os-specific/darwin/apple-source-releases/hfs/default.nix +++ b/pkgs/os-specific/darwin/apple-source-releases/hfs/default.nix @@ -5,4 +5,10 @@ appleDerivation { mkdir -p $out/include/hfs cp core/*.h $out/include/hfs ''; + + meta = { + # Seems nobody wants its binary, so we didn't implement building. + broken = !headersOnly; + platforms = lib.platforms.darwin; + }; }