nixos docs: makefile for formatting
This commit is contained in:
parent
ab1648bf0d
commit
374a3bdf5b
@ -1,6 +1,22 @@
|
||||
debug:
|
||||
.PHONY: all
|
||||
all: manual-combined.xml format
|
||||
|
||||
.PHONY: debug
|
||||
debug: generated manual-combined.xml
|
||||
|
||||
manual-combined.xml: generated *.xml
|
||||
rm ./manual-combined.xml
|
||||
nix-shell --packages xmloscopy \
|
||||
--run 'xmloscopy --docbook5 ./manual.xml ./manual-combined.xml'
|
||||
--run "xmloscopy --docbook5 ./manual.xml ./manual-combined.xml"
|
||||
|
||||
.PHONY: format
|
||||
format:
|
||||
find . -iname '*.xml' -type f -print0 | xargs -0 -I{} -n1 \
|
||||
xmlformat --config-file "../xmlformat.conf" -i {}
|
||||
|
||||
.PHONY: clean
|
||||
clean:
|
||||
rm -f manual-combined.xml generated
|
||||
|
||||
generated: ./options-to-docbook.xsl
|
||||
nix-build ../../release.nix \
|
||||
|
8
nixos/doc/manual/shell.nix
Normal file
8
nixos/doc/manual/shell.nix
Normal file
@ -0,0 +1,8 @@
|
||||
let
|
||||
pkgs = import ../../.. { };
|
||||
in
|
||||
pkgs.mkShell {
|
||||
name = "nixos-manual";
|
||||
|
||||
buildInputs = with pkgs; [ xmlformat jing xmloscopy ];
|
||||
}
|
Loading…
Reference in New Issue
Block a user