mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-07-14 14:10:33 +03:00
nixos/mediawiki: drop sqlite variant
Probably no one ever tested this, mediawiki tries to create the database inside the read-only package. There might be a proper fix but for now it's better to not advertise unsupported options.
This commit is contained in:
parent
e580ab8c3e
commit
0bd8759d1c
1 changed files with 1 additions and 1 deletions
|
@ -307,7 +307,7 @@ in
|
|||
|
||||
database = {
|
||||
type = mkOption {
|
||||
type = types.enum [ "mysql" "postgres" "sqlite" "mssql" "oracle" ];
|
||||
type = types.enum [ "mysql" "postgres" "mssql" "oracle" ];
|
||||
default = "mysql";
|
||||
description = lib.mdDoc "Database engine to use. MySQL/MariaDB is the database of choice by MediaWiki developers.";
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue