Skip to content

Commit 4df9718

Browse files
authored
Merge pull request #271 from thilobillerbeck/master
fix build for unstable and 26.05
2 parents b6c40f8 + 860836d commit 4df9718

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

book.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
title = "Nix Pills"
33
authors = ["Luca Bruno"]
44
language = "en"
5-
multilingual = false
65
src = "pills"
76

87
[output.html]
@@ -33,7 +32,7 @@ git-repository-url = "https://github.com/NixOS/nix-pills"
3332
"fundamentals-of-stdenv.html" = "19-fundamentals-of-stdenv.html"
3433
"basic-dependencies-and-hooks.html" = "20-basic-dependencies-and-hooks.html"
3534

36-
[output.linkcheck]
35+
[output.linkcheck2]
3736
follow-web-links = true
3837

3938
# To build the epub version, run:

default.nix

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,8 @@
77

88
nativeBuildInputs = with pkgs; [
99
mdbook
10-
mdbook-linkcheck
10+
cacert
11+
mdbook-linkcheck2
1112
];
1213

1314
buildPhase = ''
@@ -26,7 +27,7 @@
2627
# The nix pills were originally built into this directory, and consumers of the nix pills expect to find it there. Do not change unless you also change other code that depends on this directory structure.
2728
dst=$out/share/doc/nix-pills
2829
mkdir -p "$dst"
29-
mv book/html/* "$dst"/
30+
mv book/* "$dst"/
3031
3132
mkdir -p "$out/nix-support"
3233
echo "nix-build out $out" >> "$out/nix-support/hydra-build-products"

0 commit comments

Comments
 (0)