mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-13 09:17:07 +03:00
nixpkgs-manual: init
This commit is contained in:
parent
4252286f21
commit
b5dc82844f
@ -3,4 +3,4 @@
|
||||
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,
|
||||
runCommand,
|
||||
|
@ -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,
|
||||
|
@ -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
|
||||
|
@ -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 { };
|
||||
|
@ -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,
|
||||
|
@ -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,
|
||||
|
@ -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 { };
|
||||
|
@ -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; };
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user