Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
41 lines
721 B
Nix
41 lines
721 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
pkg-config,
|
|
cmake,
|
|
git,
|
|
zlib,
|
|
sparsehash,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "afsctool";
|
|
version = "1.7.3";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "RJVB";
|
|
repo = "afsctool";
|
|
tag = "v${version}";
|
|
hash = "sha256-cZ0P9cygj+5GgkDRpQk7P9z8zh087fpVfrYXMRRVUAI=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
pkg-config
|
|
cmake
|
|
git
|
|
];
|
|
buildInputs = [
|
|
zlib
|
|
sparsehash
|
|
];
|
|
|
|
meta = {
|
|
description = "Utility that allows end-users to leverage HFS+/APFS compression";
|
|
license = lib.licenses.unfree;
|
|
maintainers = with lib.maintainers; [ viraptor ];
|
|
platforms = lib.platforms.darwin;
|
|
homepage = "https://github.com/RJVB/afsctool";
|
|
};
|
|
}
|