mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-10 11:45:45 +03:00
macos-defaults: init at 0.2.0
This commit is contained in:
parent
fe24d8526f
commit
8310c41e61
1 changed files with 38 additions and 0 deletions
38
pkgs/by-name/ma/macos-defaults/package.nix
Normal file
38
pkgs/by-name/ma/macos-defaults/package.nix
Normal file
|
@ -0,0 +1,38 @@
|
||||||
|
{
|
||||||
|
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=";
|
||||||
|
};
|
||||||
|
|
||||||
|
useFetchCargoVendor = true;
|
||||||
|
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;
|
||||||
|
};
|
||||||
|
})
|
Loading…
Add table
Add a link
Reference in a new issue