build(nix): removed the useless 'app'

the format changed depending on the nix version and it is useless
anyway.
This commit is contained in:
Matthieu Coudron 2022-09-05 11:41:42 +02:00
parent 8570a700cc
commit 93f32bb0aa
1 changed files with 2 additions and 7 deletions

View File

@ -79,6 +79,7 @@
rec {
packages = with pkgs; {
default = neovim;
inherit neovim neovim-debug neovim-developer;
};
@ -96,15 +97,9 @@
} "make -C ${./..} shlint > $out";
};
# kept for backwards-compatibility
defaultPackage = pkgs.neovim;
apps = {
nvim = flake-utils.lib.mkApp { drv = pkgs.neovim; name = "nvim"; };
nvim-debug = flake-utils.lib.mkApp { drv = pkgs.neovim-debug; name = "nvim"; };
};
defaultApp = apps.nvim;
devShells = {
default = pkgs.neovim-developer.overrideAttrs (oa: {