Skip to content

Commit

Permalink
neovide: fix darwin build
Browse files Browse the repository at this point in the history
  • Loading branch information
Artturin committed Nov 11, 2021
1 parent a8506b6 commit 84e1651
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
3 changes: 3 additions & 0 deletions pkgs/applications/editors/neovim/neovide/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
, libglvnd
, libxkbcommon
, stdenv
, Security
, enableWayland ? stdenv.isLinux
, wayland
, xorg
Expand Down Expand Up @@ -96,6 +97,8 @@ rustPlatform.buildRustPackage rec {
}))
];
}))
] ++ lib.optionals stdenv.isDarwin [
Security
];

postFixup = let
Expand Down
4 changes: 3 additions & 1 deletion pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -28644,7 +28644,9 @@ with pkgs;

gnvim = callPackage ../applications/editors/neovim/gnvim/wrapper.nix { };

neovide = callPackage ../applications/editors/neovim/neovide { };
neovide = callPackage ../applications/editors/neovim/neovide {
inherit (darwin.apple_sdk.frameworks) Security;
};

neovim-remote = callPackage ../applications/editors/neovim/neovim-remote.nix { };

Expand Down

0 comments on commit 84e1651

Please sign in to comment.