nixpkgs-manual: init
This commit is contained in:
parent
4252286f21
commit
b5dc82844f
@ -3,4 +3,4 @@
|
|||||||
nixpkgs ? { },
|
nixpkgs ? { },
|
||||||
}:
|
}:
|
||||||
|
|
||||||
pkgs.callPackage ./doc-support/package.nix { inherit nixpkgs; }
|
pkgs.nixpkgs-manual.override { inherit nixpkgs; }
|
||||||
|
@ -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,
|
lib,
|
||||||
runCommand,
|
runCommand,
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
# Generates the documentation for library functions via nixdoc.
|
# 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,
|
lib,
|
||||||
stdenvNoCC,
|
stdenvNoCC,
|
||||||
|
@ -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 }:
|
{ lib, nixosOptionsDoc }:
|
||||||
|
|
||||||
let
|
let
|
||||||
|
@ -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,
|
lib,
|
||||||
stdenvNoCC,
|
stdenvNoCC,
|
||||||
@ -92,7 +95,6 @@ stdenvNoCC.mkDerivation (
|
|||||||
|
|
||||||
epub = callPackage ./epub.nix { };
|
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 { };
|
optionsDoc = callPackage ./options-doc.nix { };
|
||||||
|
|
||||||
pythonInterpreterTable = callPackage ./python-interpreter-table.nix { };
|
pythonInterpreterTable = callPackage ./python-interpreter-table.nix { };
|
||||||
|
@ -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,
|
lib,
|
||||||
writeText,
|
writeText,
|
||||||
|
@ -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,
|
lib,
|
||||||
runCommand,
|
runCommand,
|
||||||
|
@ -39140,6 +39140,8 @@ with pkgs;
|
|||||||
|
|
||||||
nixpkgs-lint-community = callPackage ../tools/nix/nixpkgs-lint { };
|
nixpkgs-lint-community = callPackage ../tools/nix/nixpkgs-lint { };
|
||||||
|
|
||||||
|
nixpkgs-manual = callPackage ../../doc/doc-support/package.nix { };
|
||||||
|
|
||||||
rnix-hashes = callPackage ../tools/nix/rnix-hashes { };
|
rnix-hashes = callPackage ../tools/nix/rnix-hashes { };
|
||||||
|
|
||||||
nixos-artwork = callPackage ../data/misc/nixos-artwork { };
|
nixos-artwork = callPackage ../data/misc/nixos-artwork { };
|
||||||
|
@ -77,9 +77,8 @@ let
|
|||||||
|
|
||||||
release-checks = import ./nixpkgs-basic-release-checks.nix { inherit pkgs nixpkgs supportedSystems; };
|
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; };
|
metrics = import ./metrics.nix { inherit pkgs nixpkgs; };
|
||||||
|
|
||||||
manual = import ../../doc { inherit pkgs nixpkgs; };
|
|
||||||
lib-tests = import ../../lib/tests/release.nix { inherit pkgs; };
|
lib-tests = import ../../lib/tests/release.nix { inherit pkgs; };
|
||||||
pkgs-lib-tests = import ../pkgs-lib/tests { inherit pkgs; };
|
pkgs-lib-tests = import ../pkgs-lib/tests { inherit pkgs; };
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user