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
wip/yesman
aszlig 7 years ago
parent 063e4dca79
commit 0e790b9f66
No known key found for this signature in database
GPG Key ID: 684089CE67EBB691
  1. 1
      nixos/modules/services/web-apps/atlassian/confluence.nix
  2. 1
      nixos/modules/services/web-apps/atlassian/crowd.nix
  3. 1
      nixos/modules/services/web-apps/atlassian/jira.nix

@ -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).";
};
};

@ -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).";
};
};

@ -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).";
};
};

Loading…
Cancel
Save