dockerTools: use list of strings for configureFlags

This commit is contained in:
zowoq 2022-07-15 10:05:40 +10:00
parent e2659eea36
commit 0c98db7b91

View File

@ -588,7 +588,7 @@ rec {
chown 1000 ./home/jane
ln -s ${pkgs.hello.overrideAttrs (o: {
# A unique `hello` to make sure that it isn't included via another mechanism by accident.
configureFlags = o.configureFlags or "" + " --program-prefix=layeredImageWithFakeRootCommands-";
configureFlags = o.configureFlags or [] ++ [ " --program-prefix=layeredImageWithFakeRootCommands-" ];
doCheck = false;
})} ./hello
'';