mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-21 08:35:43 +02:00
tests/lean: disable lean tests on x86_64-darwin
https://github.com/NixOS/nixpkgs/pull/371275
This commit is contained in:
parent
bca43a2a8e
commit
67de84848e
1 changed files with 9 additions and 1 deletions
|
@ -1,4 +1,12 @@
|
||||||
{
|
{ lib, pkgs, ... }:
|
||||||
|
let
|
||||||
|
platform = pkgs.stdenv.hostPlatform;
|
||||||
|
|
||||||
|
# TODO: `cadical`, one of `lean4`'s dependencies is broken on x86_64-darwin
|
||||||
|
# https://github.com/NixOS/nixpkgs/pull/371275
|
||||||
|
doRun = !(platform.isDarwin && platform.isx86_64);
|
||||||
|
in
|
||||||
|
lib.optionalAttrs doRun {
|
||||||
empty = {
|
empty = {
|
||||||
plugins.lean.enable = true;
|
plugins.lean.enable = true;
|
||||||
};
|
};
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue