diff options
| author | Quentin Aristote <quentin@aristote.fr> | 2021-12-11 17:58:47 +0100 |
|---|---|---|
| committer | Quentin Aristote <quentin@aristote.fr> | 2021-12-11 17:58:47 +0100 |
| commit | 0537f488717d8d190bbaa80a097dcb188c0d84ba (patch) | |
| tree | e11d2ccbc1ac58a4712a678c252397ea6cdb4272 /modules/default.nix | |
| parent | aa723f6680a334cf516e75f50d981a792d5c7a17 (diff) | |
correct description of nativeBuildInputs
Diffstat (limited to 'modules/default.nix')
| -rw-r--r-- | modules/default.nix | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/modules/default.nix b/modules/default.nix index 81cbb5c..a11fbda 100644 --- a/modules/default.nix +++ b/modules/default.nix @@ -22,7 +22,7 @@ in { type = types.listOf types.package; default = [ ]; description = '' - The list of derivations which will be made available to the environment. + A list of derivations which will be made available to the environment. ''; example = literalExample '' [ pkgs.ocamlPackages.owl ] @@ -32,7 +32,8 @@ in { type = types.listOf types.package; default = [ ]; description = '' - The list of derivations which will be made available to the environment at run-time. + A list of derivations which will be made available to the environment + and will be propagated. ''; example = literalExample '' [ pkgs.python3 ]; |
