mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 11:10:03 +00:00
lib: Take advantage of section descriptions
See https://github.com/nix-community/nixdoc/releases/tag/v2.6.0
This commit is contained in:
parent
3f21a22b5a
commit
055ba65fed
|
@ -1,5 +1,5 @@
|
||||||
|
/* Operations on attribute sets. */
|
||||||
{ lib }:
|
{ lib }:
|
||||||
# Operations on attribute sets.
|
|
||||||
|
|
||||||
let
|
let
|
||||||
inherit (builtins) head tail length;
|
inherit (builtins) head tail length;
|
||||||
|
|
|
@ -1,5 +1,7 @@
|
||||||
# Functions for querying information about the filesystem
|
/*
|
||||||
# without copying any files to the Nix store.
|
Functions for querying information about the filesystem
|
||||||
|
without copying any files to the Nix store.
|
||||||
|
*/
|
||||||
{ lib }:
|
{ lib }:
|
||||||
|
|
||||||
# Tested in lib/tests/filesystem.sh
|
# Tested in lib/tests/filesystem.sh
|
||||||
|
|
|
@ -1,16 +1,17 @@
|
||||||
|
/*
|
||||||
|
A partial and basic implementation of GVariant formatted strings.
|
||||||
|
See [GVariant Format Strings](https://docs.gtk.org/glib/gvariant-format-strings.html) for details.
|
||||||
|
|
||||||
|
:::{.warning}
|
||||||
|
This API is not considered fully stable and it might therefore
|
||||||
|
change in backwards incompatible ways without prior notice.
|
||||||
|
:::
|
||||||
|
*/
|
||||||
|
|
||||||
# This file is based on https://github.com/nix-community/home-manager
|
# This file is based on https://github.com/nix-community/home-manager
|
||||||
# Copyright (c) 2017-2022 Home Manager contributors
|
# Copyright (c) 2017-2022 Home Manager contributors
|
||||||
#
|
|
||||||
|
|
||||||
|
|
||||||
{ lib }:
|
{ lib }:
|
||||||
|
|
||||||
/* A partial and basic implementation of GVariant formatted strings.
|
|
||||||
See https://docs.gtk.org/glib/gvariant-format-strings.html for detauls.
|
|
||||||
|
|
||||||
Note, this API is not considered fully stable and it might therefore
|
|
||||||
change in backwards incompatible ways without prior notice.
|
|
||||||
*/
|
|
||||||
let
|
let
|
||||||
inherit (lib)
|
inherit (lib)
|
||||||
concatMapStringsSep concatStrings escape head replaceStrings;
|
concatMapStringsSep concatStrings escape head replaceStrings;
|
||||||
|
|
|
@ -1,5 +1,4 @@
|
||||||
# General list operations.
|
/* General list operations. */
|
||||||
|
|
||||||
{ lib }:
|
{ lib }:
|
||||||
let
|
let
|
||||||
inherit (lib.strings) toInt;
|
inherit (lib.strings) toInt;
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
# Nixpkgs/NixOS option handling.
|
/* Nixpkgs/NixOS option handling. */
|
||||||
{ lib }:
|
{ lib }:
|
||||||
|
|
||||||
let
|
let
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
# Functions for working with paths, see ./path.md
|
/* Functions for working with path values. */
|
||||||
|
# See ./README.md for internal docs
|
||||||
{ lib }:
|
{ lib }:
|
||||||
let
|
let
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
# Functions for copying sources to the Nix store.
|
/* Functions for copying sources to the Nix store. */
|
||||||
{ lib }:
|
{ lib }:
|
||||||
|
|
||||||
# Tested in lib/tests/sources.sh
|
# Tested in lib/tests/sources.sh
|
||||||
|
|
Loading…
Reference in a new issue