-
Notifications
You must be signed in to change notification settings - Fork 0
/
flake.nix
executable file
·174 lines (160 loc) · 4.67 KB
/
flake.nix
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
{
description = "Add laziness to your favourite plugin manager!";
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixpkgs-unstable";
flake-parts.url = "github:hercules-ci/flake-parts";
pre-commit-hooks = {
url = "github:cachix/pre-commit-hooks.nix";
};
neorocks.url = "github:nvim-neorocks/neorocks";
gen-luarc.url = "github:mrcjkb/nix-gen-luarc-json";
};
outputs = inputs @ {
self,
nixpkgs,
flake-parts,
pre-commit-hooks,
neorocks,
gen-luarc,
...
}: let
name = "lze";
pkg-overlay = import ./nix/pkg-overlay.nix {
inherit name self;
};
in
flake-parts.lib.mkFlake {inherit inputs;} {
systems = [
"x86_64-linux"
"aarch64-linux"
"x86_64-darwin"
"aarch64-darwin"
];
perSystem = {
config,
self',
inputs',
system,
...
}: let
ci-overlay = import ./nix/ci-overlay.nix {
inherit self;
plugin-name = name;
};
pkgs = import nixpkgs {
inherit system;
overlays = [
gen-luarc.overlays.default
neorocks.overlays.default
ci-overlay
pkg-overlay
];
};
luarc = pkgs.mk-luarc {
nvim = pkgs.neovim-nightly;
};
luarccurrent = pkgs.mk-luarc {
nvim = pkgs.neovim;
};
type-check-nightly = pre-commit-hooks.lib.${system}.run {
src = self;
hooks = {
lua-ls = {
enable = true;
settings.configuration = luarc;
};
};
};
pre-commit-check = pre-commit-hooks.lib.${system}.run {
src = self;
hooks = {
alejandra.enable = true;
stylua.enable = true;
luacheck = {
enable = true;
};
lua-ls = {
enable = true;
settings.configuration = luarccurrent;
};
editorconfig-checker.enable = true;
markdownlint = {
enable = true;
excludes = [
"CHANGELOG.md"
];
};
lemmy-docgen = let
indentedMeta = builtins.toFile "types.txt" (" " + (builtins.replaceStrings ["\n"] ["\n "] (builtins.readFile ./lua/lze/meta.lua)));
lemmyscript = pkgs.writeShellScript "lemmy-helper" ''
gitroot="$(${pkgs.git}/bin/git rev-parse --show-toplevel)"
if [ -z "$gitroot" ]; then
echo "Error: Unable to determine Git root."
exit 1
fi
maindoc="$(realpath "$gitroot/doc/lze.txt")"
mkdir -p "$(dirname "$maindoc")"
export DOCOUT=$(mktemp)
${pkgs.lemmy-help}/bin/lemmy-help ${./lua/lze/init.lua} > "$DOCOUT"
export BASHCACHE=$(mktemp)
modeline="vim:tw=78:ts=8:noet:ft=help:norl:"
sed "/$modeline/d" "$DOCOUT" > $BASHCACHE
echo " *lze.types*" >> $BASHCACHE
echo "" >> $BASHCACHE
echo ">lua" >> $BASHCACHE
cat ${indentedMeta} >> $BASHCACHE
echo "" >> $BASHCACHE
echo "<" >> $BASHCACHE
echo "" >> $BASHCACHE
echo "$modeline" >> $BASHCACHE
cat "$BASHCACHE" > "$maindoc"
rm "$BASHCACHE"
rm "$DOCOUT"
'';
in {
enable = true;
name = "lemmy-docgen";
entry = "${lemmyscript}";
};
};
};
devShell = pkgs.mkShell {
name = "lze devShell";
DEVSHELL = 0;
shellHook = ''
${pre-commit-check.shellHook}
ln -fs ${pkgs.luarc-to-json luarc} .luarc.json
'';
buildInputs =
self.checks.${system}.pre-commit-check.enabledPackages
++ (with pkgs; [
lua-language-server
busted-nlua
]);
};
in {
devShells = {
default = devShell;
inherit devShell;
};
packages = rec {
default = lze-vimPlugin;
lze-luaPackage = pkgs.lua51Packages.${name};
lze-vimPlugin = pkgs.vimPlugins.${name};
};
checks = {
inherit
pre-commit-check
type-check-nightly
;
inherit
(pkgs)
nvim-nightly-tests
;
};
};
flake = {
overlays.default = pkg-overlay;
};
};
}