mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-07-13 21:50:33 +03:00
further fix manual evaluation
cc @cransom @domenkozar See also9ecc587
5ccfe7e
This commit is contained in:
parent
5ccfe7e8f2
commit
52a875fb23
1 changed files with 3 additions and 0 deletions
|
@ -128,6 +128,7 @@ in {
|
||||||
package = mkOption {
|
package = mkOption {
|
||||||
description = "Cassandra package to use.";
|
description = "Cassandra package to use.";
|
||||||
default = pkgs.cassandra;
|
default = pkgs.cassandra;
|
||||||
|
defaultText = "pkgs.cassandra";
|
||||||
type = types.package;
|
type = types.package;
|
||||||
};
|
};
|
||||||
jre = mkOption {
|
jre = mkOption {
|
||||||
|
@ -149,6 +150,7 @@ in {
|
||||||
envFile = mkOption {
|
envFile = mkOption {
|
||||||
description = "path to cassandra-env.sh";
|
description = "path to cassandra-env.sh";
|
||||||
default = "${cassandraPackage}/conf/cassandra-env.sh";
|
default = "${cassandraPackage}/conf/cassandra-env.sh";
|
||||||
|
defaultText = "\${cassandraPackage}/conf/cassandra-env.sh";
|
||||||
type = types.path;
|
type = types.path;
|
||||||
};
|
};
|
||||||
clusterName = mkOption {
|
clusterName = mkOption {
|
||||||
|
@ -190,6 +192,7 @@ in {
|
||||||
};
|
};
|
||||||
envScript = mkOption {
|
envScript = mkOption {
|
||||||
default = "${cassandraPackage}/conf/cassandra-env.sh";
|
default = "${cassandraPackage}/conf/cassandra-env.sh";
|
||||||
|
defaultText = "\${cassandraPackage}/conf/cassandra-env.sh";
|
||||||
type = types.path;
|
type = types.path;
|
||||||
description = "Supply your own cassandra-env.sh rather than using the default";
|
description = "Supply your own cassandra-env.sh rather than using the default";
|
||||||
};
|
};
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue