mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-21 08:35:43 +02:00
tests: disable papis test on darwin
https://github.com/NixOS/nixpkgs/issues/408528
This commit is contained in:
parent
98d9c173fc
commit
563fdaeef9
2 changed files with 9 additions and 1 deletions
|
@ -1,4 +1,7 @@
|
||||||
{
|
{ lib, pkgs, ... }:
|
||||||
|
# TODO: as of 2025-05-18, luajitPackages.luv is broken on darwin
|
||||||
|
# https://github.com/NixOS/nixpkgs/issues/408528
|
||||||
|
lib.optionalAttrs (!pkgs.stdenv.hostPlatform.isDarwin) {
|
||||||
empty = {
|
empty = {
|
||||||
plugins.papis.enable = true;
|
plugins.papis.enable = true;
|
||||||
};
|
};
|
||||||
|
|
|
@ -35,6 +35,11 @@
|
||||||
]
|
]
|
||||||
++ lib.optionals (hostPlatform.isLinux && hostPlatform.isAarch64) [
|
++ lib.optionals (hostPlatform.isLinux && hostPlatform.isAarch64) [
|
||||||
"cmp_tabnine"
|
"cmp_tabnine"
|
||||||
|
]
|
||||||
|
++ lib.optionals hostPlatform.isDarwin [
|
||||||
|
# TODO: as of 2025-05-18, luajitPackages.luv is broken on darwin
|
||||||
|
# https://github.com/NixOS/nixpkgs/issues/408528
|
||||||
|
"papis"
|
||||||
];
|
];
|
||||||
in
|
in
|
||||||
pipe config.cmpSourcePlugins [
|
pipe config.cmpSourcePlugins [
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue