commit 93f32bb0aaa86ecb04ca4c15e0d9e1ebd2ba4716
parent 8570a700cce5c8c4148652693dba9bb0b14e3aa4
Author: Matthieu Coudron <mcoudron@hotmail.com>
Date: Mon, 5 Sep 2022 11:41:42 +0200
build(nix): removed the useless 'app'
the format changed depending on the nix version and it is useless
anyway.
Diffstat:
1 file changed, 2 insertions(+), 7 deletions(-)
diff --git a/contrib/flake.nix b/contrib/flake.nix
@@ -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: {