nixpkgs-manual: init

This commit is contained in:
Philip Taron 2024-07-26 11:45:25 -07:00
parent 4252286f21
commit b5dc82844f
No known key found for this signature in database
9 changed files with 12 additions and 9 deletions

View File

@ -3,4 +3,4 @@
nixpkgs ? { },
}:
pkgs.callPackage ./doc-support/package.nix { inherit nixpkgs; }
pkgs.nixpkgs-manual.override { inherit nixpkgs; }

View File

@ -1,4 +1,4 @@
# To run this derivation, `nix-build -A nixpkgs-manual.epub`
# To build this derivation, run `nix-build -A nixpkgs-manual.epub`
{
lib,
runCommand,

View File

@ -1,5 +1,5 @@
# Generates the documentation for library functions via nixdoc.
# To run this derivation, `nix-build -A nixpkgs-manual.lib-docs`
# To build this derivation, run `nix-build -A nixpkgs-manual.lib-docs`
{
lib,
stdenvNoCC,

View File

@ -1,4 +1,4 @@
# To run this derivation, `nix-build -A nixpkgs-manual.optionsDoc`
# To build this derivation, run `nix-build -A nixpkgs-manual.optionsDoc`
{ lib, nixosOptionsDoc }:
let

View File

@ -1,3 +1,6 @@
# This file describes the Nixpkgs manual, which happens to use module docs infra originally
# developed for NixOS. To build this derivation, run `nix-build -A nixpkgs-manual`.
#
{
lib,
stdenvNoCC,
@ -92,7 +95,6 @@ stdenvNoCC.mkDerivation (
epub = callPackage ./epub.nix { };
# NB: This file describes the Nixpkgs manual, which happens to use module docs infra originally developed for NixOS.
optionsDoc = callPackage ./options-doc.nix { };
pythonInterpreterTable = callPackage ./python-interpreter-table.nix { };

View File

@ -1,4 +1,4 @@
# To run this derivation, `nix-build -A nixpkgs-manual.pythonInterpreterTable`
# To build this derivation, run `nix-build -A nixpkgs-manual.pythonInterpreterTable`
{
lib,
writeText,

View File

@ -1,4 +1,4 @@
# To run this derivation, `nix-build -A nixpkgs-manual.tests.manpage-urls`
# To build this derivation, run `nix-build -A nixpkgs-manual.tests.manpage-urls`
{
lib,
runCommand,

View File

@ -39140,6 +39140,8 @@ with pkgs;
nixpkgs-lint-community = callPackage ../tools/nix/nixpkgs-lint { };
nixpkgs-manual = callPackage ../../doc/doc-support/package.nix { };
rnix-hashes = callPackage ../tools/nix/rnix-hashes { };
nixos-artwork = callPackage ../data/misc/nixos-artwork { };

View File

@ -77,9 +77,8 @@ let
release-checks = import ./nixpkgs-basic-release-checks.nix { inherit pkgs nixpkgs supportedSystems; };
manual = pkgs.nixpkgs-manual.override { inherit nixpkgs; };
metrics = import ./metrics.nix { inherit pkgs nixpkgs; };
manual = import ../../doc { inherit pkgs nixpkgs; };
lib-tests = import ../../lib/tests/release.nix { inherit pkgs; };
pkgs-lib-tests = import ../pkgs-lib/tests { inherit pkgs; };