afsctool: use new Darwin SDK pattern

This commit is contained in:
Theodore Ni 2024-11-12 22:04:05 -08:00
parent d4fb1d3a52
commit 85036e32ff
No known key found for this signature in database
GPG Key ID: 48B67583BDDD4474
2 changed files with 2 additions and 5 deletions

View File

@ -6,7 +6,6 @@
, git
, zlib
, sparsehash
, CoreServices
}:
stdenv.mkDerivation rec {
@ -21,7 +20,7 @@ stdenv.mkDerivation rec {
};
nativeBuildInputs = [ pkg-config cmake git ];
buildInputs = [ zlib sparsehash CoreServices ];
buildInputs = [ zlib sparsehash ];
meta = with lib; {
description = "Utility that allows end-users to leverage HFS+/APFS compression";

View File

@ -946,9 +946,7 @@ with pkgs;
libdislocator = callPackage ../tools/security/aflplusplus/libdislocator.nix { };
afsctool = callPackage ../tools/filesystems/afsctool {
inherit (darwin.apple_sdk.frameworks) CoreServices;
};
afsctool = callPackage ../tools/filesystems/afsctool { };
aioblescan = with python3Packages; toPythonApplication aioblescan;