forked from input-output-hk/haskell.nix
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmkdocs.yml
61 lines (60 loc) · 2.46 KB
/
mkdocs.yml
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
# You can use mkdocs from nix, by running the following:
#
# nix-shell -p mkdocs
#
# that should pop you into a shell, where you can then
# run
#
# mkdocs serve
#
# and point your browser to localhost:8000
#
site_name: Alternative Haskell Infrastructure for Nixpkgs
theme: readthedocs
site_url: null
repo_url: https://github.com/input-output-hk/haskell.nix
markdown_extensions:
- admonition
- footnotes
- tables
- toc:
permalink: true
nav:
- 'Introduction': index.md
- 'Motivation': motivation.md
- 'Architecture': architecture.md
- 'Tutorials':
- 'Getting started': tutorials/getting-started.md
- 'Getting started with Flakes': tutorials/getting-started-flakes.md
- 'Getting started with Hix': tutorials/getting-started-hix.md
- 'Creating a development environment': tutorials/development.md
- 'Sourcing files only part of git repository using cleanGit': tutorials/clean-git.md
- 'Handling git repositories in projects': tutorials/source-repository-hashes.md
- 'Mapping non-Haskell dependencies to Nixpkgs': tutorials/pkg-map.md
- 'Bumping Hackage and Stackage snapshots': tutorials/hackage-stackage.md
- 'Materialization: Speeding up Nix evaluation': tutorials/materialization.md
- 'Cross-compiling your project': tutorials/cross-compilation.md
- 'Generating coverage information': tutorials/coverage.md
- 'Build a specific package from Hackage or Stackage': tutorials/building-package-from-stackage-hackage.md
- 'Content addressed derivations': tutorials/ca-derivations.md
- 'Reference':
- 'Supported GHC versions': reference/supported-ghc-versions.md
- 'Command-line tools': reference/commands.md
- 'Haskell.nix Library': reference/library.md
- 'Module options': reference/modules.md
- 'Troubleshooting': troubleshooting.md
- 'Templates / Abstraction':
- 'IOHKs nix library': iohk-nix.md
- 'Dev Notes':
- 'Architecture': dev/dev-architecture.md
- 'Installing nix-tools': dev/installing-nix-tools.md
- 'How to update nix-tools': dev/nix-tools-pin.md
- 'Manually generating Nix expressions': dev/manually-generating-nix-expressions.md
- 'Maintainer Scripts': dev/maintainer-scripts.md
- 'Nixpkgs Pin': dev/nixpkgs-pin.md
- 'Removing withPackage wrapper': dev/removing-with-package-wrapper.md
- 'Test Suite': dev/tests.md
- 'Adding a new GHC version': dev/adding-new-ghc.md
- 'Coverage': dev/coverage.md
- 'Making changes to Hix': dev/hix.md
- 'ChangeLog': changelog.md