We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1b2abfb commit 6f7f1d2Copy full SHA for 6f7f1d2
tests/test-sources/plugins/by-name/papis/default.nix
@@ -1,4 +1,7 @@
1
-{
+{ lib, pkgs, ... }:
2
+# TODO: as of 2025-05-18, luajitPackages.luv is broken on darwin
3
+# https://github.com/NixOS/nixpkgs/issues/408528
4
+lib.optionalAttrs (!pkgs.stdenv.hostPlatform.isDarwin) {
5
empty = {
6
plugins.papis.enable = true;
7
};
tests/test-sources/plugins/cmp/all-sources.nix
@@ -35,6 +35,11 @@
35
]
36
++ lib.optionals (hostPlatform.isLinux && hostPlatform.isAarch64) [
37
"cmp_tabnine"
38
+ ]
39
+ ++ lib.optionals hostPlatform.isDarwin [
40
+ # TODO: as of 2025-05-18, luajitPackages.luv is broken on darwin
41
+ # https://github.com/NixOS/nixpkgs/issues/408528
42
+ "papis"
43
];
44
in
45
pipe config.cmpSourcePlugins [
0 commit comments