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
38 lines
957 B
Nix
38 lines
957 B
Nix
{
|
|
lib,
|
|
fetchFromGitHub,
|
|
rustPlatform,
|
|
nix-update-script,
|
|
}:
|
|
rustPlatform.buildRustPackage (finalAttrs: {
|
|
pname = "macos-defaults";
|
|
version = "0.2.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "dsully";
|
|
repo = "macos-defaults";
|
|
tag = finalAttrs.version;
|
|
hash = "sha256-dSZjMuw7ott0dgiYo0rqekEvScmrX6iG7xHaPAgo1/E=";
|
|
};
|
|
|
|
cargoHash = "sha256-xSg6WAkFPS8B1G4WqMW77egCMmOEo3rK2EKcrDYaBjA=";
|
|
|
|
checkFlags = [
|
|
# accesses home dir
|
|
"--skip=defaults::tests::plist_path_tests"
|
|
# accesses system_profiler
|
|
"--skip=defaults::tests::test_get_hardware_uuid"
|
|
];
|
|
|
|
passthru.updateScript = nix-update-script { };
|
|
|
|
meta = {
|
|
description = "Tool for managing macOS defaults declaratively via YAML files";
|
|
homepage = "https://github.com/dsully/macos-defaults";
|
|
license = lib.licenses.mit;
|
|
maintainers = with lib.maintainers; [ josh ];
|
|
mainProgram = "macos-defaults";
|
|
platforms = lib.platforms.darwin;
|
|
};
|
|
})
|