Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 12 additions & 2 deletions .github/workflows/manual-nixos-v2.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,17 @@ jobs:
with:
# This cache is for the nixpkgs repo checks and should not be trusted or used elsewhere.
name: nixpkgs-ci
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}'
authToken: "${{ secrets.CACHIX_AUTH_TOKEN }}"

- name: Building NixOS manual
run: NIX_PATH=nixpkgs=$(pwd) nix-build --option restrict-eval true nixos/release.nix -A manual.x86_64-linux
run: |
export NIX_PATH=nixpkgs=$(pwd)
nix-build --option restrict-eval true nixos/release.nix -A manual.x86_64-linux -o result-x86_64-linux
nix-build --option restrict-eval true nixos/release.nix -A manual.aarch64-linux -o result-aarch64-linux

- name: Upload NixOS manual
uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 # v4.6.1
with:
name: nixos-manual-result
path: result-**
if-no-files-found: error
2 changes: 2 additions & 0 deletions doc/development.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# Development of Nixpkgs {#part-development}

Hello

This section shows you how Nixpkgs is being developed and how you can interact with the contributors and the latest updates.
If you are interested in contributing yourself, see [CONTRIBUTING.md](https://github.com/NixOS/nixpkgs/blob/master/CONTRIBUTING.md).

Expand Down
2 changes: 1 addition & 1 deletion nixos/doc/manual/manual.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# NixOS Manual {#book-nixos-manual}
## Version @NIXOS_VERSION@
## Version @NIXOS_VERSION@ test

<!--
this is the top-level structure file for the nixos manual.
Expand Down
1 change: 1 addition & 0 deletions pkgs/servers/sql/postgresql/generic.nix
Original file line number Diff line number Diff line change
Expand Up @@ -332,6 +332,7 @@ let
moveToOutput "bin/ecpg" "$dev"
moveToOutput "lib/pgxs" "$dev"


# Pretend pg_config is located in $out/bin to return correct paths, but
# actually have it in -dev to avoid pulling in all other outputs. See the
# pg_config.sh script's comments for details.
Expand Down
Loading