From 68d5f25ccfbd0f9c2c4d412e7e187bb3d8fcc2a3 Mon Sep 17 00:00:00 2001 From: Nikolay Korotkiy Date: Sat, 4 Oct 2025 16:31:15 +0400 Subject: [PATCH] oxker: fix build on darwin --- pkgs/by-name/ox/oxker/package.nix | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/pkgs/by-name/ox/oxker/package.nix b/pkgs/by-name/ox/oxker/package.nix index d3683ec30059..4741fd5b4726 100644 --- a/pkgs/by-name/ox/oxker/package.nix +++ b/pkgs/by-name/ox/oxker/package.nix @@ -1,5 +1,6 @@ { lib, + stdenv, fetchCrate, rustPlatform, nix-update-script, @@ -16,6 +17,12 @@ rustPlatform.buildRustPackage (finalAttrs: { cargoHash = "sha256-X5iNAwp0DcXoT82ZLq37geifztvJ/zZgOgM3SycAazA="; + checkFlags = lib.optionals stdenv.hostPlatform.isDarwin [ + "--skip ui::draw_blocks::help::tests::test_draw_blocks_help_custom_keymap_one_definition" + "--skip ui::draw_blocks::help::tests::test_draw_blocks_help_custom_keymap_two_definitions" + "--skip ui::draw_blocks::help::tests::test_draw_blocks_help_one_and_two_definitions" + ]; + passthru.updateScript = nix-update-script { }; meta = {