Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

nixos/tomcat: fix eval error introduced by #40657

(cherry picked from commit 93cbb9b72fed5076d4d0038f14625be4debde255)

Uli Baum 19d04024 f2ddbba1

+2 -2
+2 -2
nixos/modules/services/web-servers/tomcat.nix
··· 78 78 79 79 webapps = mkOption { 80 80 type = types.listOf types.package; 81 - default = [ tomcat85.webapps ]; 82 - defaultText = "[ tomcat85.webapps ]"; 81 + default = [ tomcat.webapps ]; 82 + defaultText = "[ pkgs.tomcat85.webapps ]"; 83 83 description = "List containing WAR files or directories with WAR files which are web applications to be deployed on Tomcat"; 84 84 }; 85 85