nixos/atlassian: Fix eval error in jrePackage

The error got introduced by 4f3d971ef5,
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
This commit is contained in:
aszlig 2017-11-09 20:28:49 +01:00
parent 063e4dca79
commit 0e790b9f66
No known key found for this signature in database
GPG Key ID: 684089CE67EBB691
3 changed files with 3 additions and 0 deletions

View File

@ -130,6 +130,7 @@ in
jrePackage = mkOption {
type = types.package;
default = pkgs.oraclejre8;
defaultText = "pkgs.oraclejre8";
description = "Note that Atlassian only support the Oracle JRE (JRASERVER-46152).";
};
};

View File

@ -96,6 +96,7 @@ in
jrePackage = mkOption {
type = types.package;
default = pkgs.oraclejre8;
defaultText = "pkgs.oraclejre8";
description = "Note that Atlassian only support the Oracle JRE (JRASERVER-46152).";
};
};

View File

@ -134,6 +134,7 @@ in
jrePackage = mkOption {
type = types.package;
default = pkgs.oraclejre8;
defaultText = "pkgs.oraclejre8";
description = "Note that Atlassian only support the Oracle JRE (JRASERVER-46152).";
};
};