matrix: flutterBuildFlags is a list, not a string (#634 followup of followup)
This commit is contained in:
parent
e3f098df64
commit
459baebbb8
1 changed files with 4 additions and 2 deletions
|
|
@ -198,8 +198,10 @@ in
|
||||||
# routing lands (#609 — `matrix.${hyperhiveDomain}`), drop
|
# routing lands (#609 — `matrix.${hyperhiveDomain}`), drop
|
||||||
# this override; upstream's `/` base-href is correct at the
|
# this override; upstream's `/` base-href is correct at the
|
||||||
# root of a dedicated subdomain.
|
# root of a dedicated subdomain.
|
||||||
flutterBuildFlags =
|
flutterBuildFlags = (old.flutterBuildFlags or [ ]) ++ [
|
||||||
(old.flutterBuildFlags or "") + " --base-href /matrix/";
|
"--base-href"
|
||||||
|
"/matrix/"
|
||||||
|
];
|
||||||
});
|
});
|
||||||
defaultText = lib.literalMD "`pkgs.fluffychat-web` rebuilt with `--base-href /matrix/` via `flutterBuildFlags`.";
|
defaultText = lib.literalMD "`pkgs.fluffychat-web` rebuilt with `--base-href /matrix/` via `flutterBuildFlags`.";
|
||||||
description = ''
|
description = ''
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue