mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-07-13 13:40:28 +03:00
nixos: Provide a defaultText for type = package
We don't want to build all those things along with the manual, so that's what the defaultText attribute is for. Unfortunately a few of them were missing, so let's add them. Signed-off-by: aszlig <aszlig@redmoonstudios.org>
This commit is contained in:
parent
60c7bd1237
commit
7bdcfb33f4
7 changed files with 7 additions and 0 deletions
|
@ -33,6 +33,7 @@ in
|
|||
package = mkOption {
|
||||
type = types.package;
|
||||
default = pkgs.consul;
|
||||
defaultText = "pkgs.consul";
|
||||
description = ''
|
||||
The package used for the Consul agent and CLI.
|
||||
'';
|
||||
|
|
|
@ -32,6 +32,7 @@ in {
|
|||
package = mkOption {
|
||||
type = types.package;
|
||||
default = pkgs.ejabberd;
|
||||
defaultText = "pkgs.ejabberd";
|
||||
description = "ejabberd server package to use";
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue