Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 4c3ec0e32522
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 1ad3f34a999a
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Mar 22, 2019

  1. nixos manual Makefile: improve purity

    And be quiet when building/downloading the required tools.
    vcunat committed Mar 22, 2019

    Verified

    This commit was signed with the committer’s verified signature.
    afreakk Hans
    Copy the full SHA
    1ad3f34 View commit details
Showing with 4 additions and 3 deletions.
  1. +4 −3 nixos/doc/manual/Makefile
7 changes: 4 additions & 3 deletions nixos/doc/manual/Makefile
Original file line number Diff line number Diff line change
@@ -6,13 +6,14 @@ debug: generated manual-combined.xml

manual-combined.xml: generated *.xml **/*.xml
rm -f ./manual-combined.xml
nix-shell --packages xmloscopy \
nix-shell --pure -Q --packages xmloscopy \
--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 {}
nix-shell --pure -Q --packages xmlformat \
--run "find ../../ -iname '*.xml' -type f -print0 | xargs -0 -I{} -n1 \
xmlformat --config-file '../xmlformat.conf' -i {}"

.PHONY: fix-misc-xml
fix-misc-xml: