aboutsummaryrefslogtreecommitdiff
path: root/flake.nix
blob: 3931d4d3fe80cb2c261f487d3fbafa38b0ff5c43 (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
48
{
  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
        '';
      };
    };
  };
}