nixos/tomcat: fix eval error introduced by #40657

(cherry picked from commit 93cbb9b72fed5076d4d0038f14625be4debde255)
release-18.03-flake
Uli Baum 2018-06-11 11:02:54 +02:00
parent f2ddbba1d8
commit 19d04024ff
1 changed files with 2 additions and 2 deletions

View File

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