Skip to content

Commit

Permalink
nixos/atlassian: Fix eval error in jrePackage
Browse files Browse the repository at this point in the history
The error got introduced by 4f3d971,
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
  • Loading branch information
aszlig committed Nov 9, 2017
1 parent 063e4dc commit 0e790b9
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions nixos/modules/services/web-apps/atlassian/confluence.nix
Expand Up @@ -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).";
};
};
Expand Down
1 change: 1 addition & 0 deletions nixos/modules/services/web-apps/atlassian/crowd.nix
Expand Up @@ -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).";
};
};
Expand Down
1 change: 1 addition & 0 deletions nixos/modules/services/web-apps/atlassian/jira.nix
Expand Up @@ -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).";
};
};
Expand Down

0 comments on commit 0e790b9

Please sign in to comment.