mirror of
https://github.com/simplex-chat/haskell.nix.git
synced 2026-06-03 09:17:32 +00:00
53cf60c83c
This should daily updates which are failing with: ``` error: unrecognised flag '--accept-flake-config' ``` See https://buildkite.com/input-output-hk/haskell-dot-nix-nightly-updates/builds/1318#0182f20e-bd2b-4840-a930-af2815df793c This change also updates to the newer mkdocs in nixpkgs 22.05 and updates the check-path-support to use a combination of nixpkgs and ghc that should be in the hydra cache.
62 lines
2.5 KiB
YAML
62 lines
2.5 KiB
YAML
# 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
|