nixos-mailserver/.readthedocs.yaml
2025-05-04 09:41:48 +02:00

23 lines
610 B
YAML

# Read the Docs configuration file
# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details
# Required
version: 2
build:
os: ubuntu-22.04
tools:
python: "3"
apt_packages:
- nix
- proot
jobs:
pre_install:
- mkdir -p ~/.nix ~/.config/nix
- echo "experimental-features = nix-command flakes" > ~/.config/nix/nix.conf
build:
html:
- proot -b ~/.nix:/nix /bin/sh -c "pwd"
- proot -b ~/.nix:/nix /bin/sh -c "ls -l ./"
- proot -b ~/.nix:/nix /bin/sh -c "nix build -L .#documentation && cp -rv result $READTHEDOCS_OUTPUT/html/"