1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

mysql service: specify defaultText for package option

Also provide an example that differs from the default.
This commit is contained in:
Joachim Fasting 2016-10-09 11:19:54 +02:00
parent 95dc15cf0f
commit 52d12b473a
No known key found for this signature in database
GPG key ID: 7544761007FE4E08

View file

@ -53,7 +53,8 @@ in
package = mkOption {
type = types.package;
default = pkgs.mysql;
example = literalExample "pkgs.mysql";
defaultText = "pkgs.mysql";
example = literalExample "pkgs.mysql55";
description = "
Which MySQL derivation to use.
";