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
|
||||
# this override; upstream's `/` base-href is correct at the
|
||||
# root of a dedicated subdomain.
|
||||
flutterBuildFlags =
|
||||
(old.flutterBuildFlags or "") + " --base-href /matrix/";
|
||||
flutterBuildFlags = (old.flutterBuildFlags or [ ]) ++ [
|
||||
"--base-href"
|
||||
"/matrix/"
|
||||
];
|
||||
});
|
||||
defaultText = lib.literalMD "`pkgs.fluffychat-web` rebuilt with `--base-href /matrix/` via `flutterBuildFlags`.";
|
||||
description = ''
|
||||
|
|
|
|||
Loading…
Reference in a new issue