nixos/atlassian: Fix eval error in jrePackage

The error got introduced by 4f3d971ef55b82ef349e5fb198196d2028fc0cf5,
which removed the *Text attributes from the option.

This in turn leads to an evaluation error while building the
manual/manpage, because oraclejre8 is marked unfree.

Signed-off-by: aszlig <aszlig@nix.build>
Cc: @jbgi, @orivej, @globin

aszlig 0e790b9f 063e4dca

Changed files
+3
nixos
modules
services
web-apps
+1
nixos/modules/services/web-apps/atlassian/confluence.nix
···
jrePackage = mkOption {
type = types.package;
default = pkgs.oraclejre8;
description = "Note that Atlassian only support the Oracle JRE (JRASERVER-46152).";
};
};
···
jrePackage = mkOption {
type = types.package;
default = pkgs.oraclejre8;
+
defaultText = "pkgs.oraclejre8";
description = "Note that Atlassian only support the Oracle JRE (JRASERVER-46152).";
};
};
+1
nixos/modules/services/web-apps/atlassian/crowd.nix
···
jrePackage = mkOption {
type = types.package;
default = pkgs.oraclejre8;
description = "Note that Atlassian only support the Oracle JRE (JRASERVER-46152).";
};
};
···
jrePackage = mkOption {
type = types.package;
default = pkgs.oraclejre8;
+
defaultText = "pkgs.oraclejre8";
description = "Note that Atlassian only support the Oracle JRE (JRASERVER-46152).";
};
};
+1
nixos/modules/services/web-apps/atlassian/jira.nix
···
jrePackage = mkOption {
type = types.package;
default = pkgs.oraclejre8;
description = "Note that Atlassian only support the Oracle JRE (JRASERVER-46152).";
};
};
···
jrePackage = mkOption {
type = types.package;
default = pkgs.oraclejre8;
+
defaultText = "pkgs.oraclejre8";
description = "Note that Atlassian only support the Oracle JRE (JRASERVER-46152).";
};
};