blob: 0d45aa0adc3f22455c24b4f8ae6aea7aa6a2e2c3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
{
description = "My Completely Inelegant Neovim Flake";
inputs = {
nixpkgs.url = "nixpkgs/nixos-unstable";
};
outputs = { self, nixpkgs }:
let
system = "x86_64-linux";
pkgs = import nixpkgs {
inherit system;
overlays = [
(self: super: {
vale = super.callPackage ./nix/vale.nix { };
flake8-isort = super.python3Packages.callPackage ./nix/flake8-isort.nix { };
mypython = super.python3Packages.callPackage ./nix/mypython.nix { };
})
];
};
in rec {
# From nix >= 2.7 the default app syntax changes
defaultApp.${system} = {
type = "app";
program = "${packages.${system}.neovimCH}/bin/nvim";
};
packages.${system}.neovimCH = with pkgs; symlinkJoin {
name = "neovim";
paths = [ pkgs.neovim ];
buildInputs = [ pkgs.makeWrapper ];
postBuild = with pkgs; ''
rm $out/bin/nvim
BINPATH=${lib.makeBinPath [
nodejs
mypython
pyright
vale
tree-sitter
nodePackages.bash-language-server
shellcheck
hadolint
]}
makeWrapper ${neovim}/bin/nvim $out/bin/nvim --prefix PATH : $BINPATH
'';
};
};
}
|