summaryrefslogtreecommitdiff
path: root/modules/default.nix
diff options
context:
space:
mode:
authorQuentin Aristote <quentin@aristote.fr>2021-12-11 17:58:47 +0100
committerQuentin Aristote <quentin@aristote.fr>2021-12-11 17:58:47 +0100
commit0537f488717d8d190bbaa80a097dcb188c0d84ba (patch)
treee11d2ccbc1ac58a4712a678c252397ea6cdb4272 /modules/default.nix
parentaa723f6680a334cf516e75f50d981a792d5c7a17 (diff)
correct description of nativeBuildInputs
Diffstat (limited to 'modules/default.nix')
-rw-r--r--modules/default.nix5
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 ];