0
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-07-13 21:50:33 +03:00

tomcat service: fix webapps default option (#40657)

The old package tomcat.webapps does not exist
This commit is contained in:
Tristan Helmich 2018-06-10 20:10:01 +02:00 committed by xeji
parent ea80663493
commit 1daa77160e

View file

@ -109,8 +109,8 @@ in
webapps = mkOption { webapps = mkOption {
type = types.listOf types.package; type = types.listOf types.package;
default = [ tomcat.webapps ]; default = [ tomcat85.webapps ];
defaultText = "[ tomcat.webapps ]"; defaultText = "[ tomcat85.webapps ]";
description = "List containing WAR files or directories with WAR files which are web applications to be deployed on Tomcat"; description = "List containing WAR files or directories with WAR files which are web applications to be deployed on Tomcat";
}; };