File tree Expand file tree Collapse file tree 3 files changed +9
-1
lines changed Expand file tree Collapse file tree 3 files changed +9
-1
lines changed Original file line number Diff line number Diff line change
1
+ # Maintaining Nixvim
2
+
3
+ This file is intended as a reference for Nixvim's core maintainers, although it may be interesting for anyone curious how we do certain things.
4
+
Original file line number Diff line number Diff line change 28
28
---
29
29
30
30
[ Contributing] ( ./CONTRIBUTING.md )
31
+ [ Maintaining] ( ./MAINTAINING.md )
31
32
[ NixVim Options Search] ( ./search/index.html )
Original file line number Diff line number Diff line change @@ -347,6 +347,7 @@ pkgs.stdenv.mkDerivation (finalAttrs: {
347
347
} ;
348
348
349
349
contributing = finalAttrs . passthru . fix-links ../../CONTRIBUTING.md ;
350
+ maintaining = finalAttrs . passthru . fix-links ../../MAINTAINING.md ;
350
351
351
352
buildPhase = ''
352
353
mkdir -p $out
@@ -356,8 +357,10 @@ pkgs.stdenv.mkDerivation (finalAttrs: {
356
357
mv ./docs/* ./ && rmdir ./docs
357
358
mv ./mdbook/* ./ && rmdir ./mdbook
358
359
359
- # Copy the contributing file
360
+ # Copy the contributing and maintaining files
360
361
cp $contributing ./CONTRIBUTING.md
362
+ substitute $maintaining ./MAINTAINING.md \
363
+ --replace-fail 'This file' 'This page'
361
364
362
365
# Symlink the function docs
363
366
for path in ${ lib-docs } /*
You can’t perform that action at this time.
0 commit comments