afsctool: 1.7.0 -> 1.7.3 (#355590)

This commit is contained in:
Theodore Ni 2024-11-17 04:19:53 -08:00 committed by GitHub
commit cef0e6e27b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 5 additions and 8 deletions

View File

@ -6,22 +6,21 @@
, git
, zlib
, sparsehash
, CoreServices
}:
stdenv.mkDerivation rec {
pname = "afsctool";
version = "1.7.0";
version = "1.7.3";
src = fetchFromGitHub {
owner = "RJVB";
repo = pname;
rev = version;
hash = "sha256-rqca7gpH46hk4MEPMHqYnteYJnGpLS/gu4XP7xWqDzo=";
rev = "v${version}";
hash = "sha256-cZ0P9cygj+5GgkDRpQk7P9z8zh087fpVfrYXMRRVUAI=";
};
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;