mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-19 04:02:10 +00:00
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:
parent
063e4dca79
commit
0e790b9f66
|
@ -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…
Reference in a new issue