Fix lots of typos
This commit is contained in:
+11
-7
@@ -13,17 +13,21 @@
|
||||
shellcheck,
|
||||
python3,
|
||||
xonsh,
|
||||
|
||||
name,
|
||||
...
|
||||
}:
|
||||
let
|
||||
basicPython = (python3.withPackages (p: with p; [ pyyaml ]));
|
||||
x = xonsh.overridePtyhonAttrs (old:
|
||||
{
|
||||
python3 = basicPython;
|
||||
propagatedbuildInputs = old.propagatedBuildInputs ++ [ basicPython.pkgs.pyyaml ];
|
||||
});
|
||||
x = xonsh.overridePythonAttrs (old: {
|
||||
python3 = basicPython;
|
||||
propagatedBuildInputs =
|
||||
(if builtins.hasAttr "propagatedBuildInputs" old then old.propagatedBuildInputs else [ ])
|
||||
++ [ basicPython.pkgs.pyyaml ];
|
||||
});
|
||||
in
|
||||
dockerTools.buildLayeredImage {
|
||||
name = "vm-test";
|
||||
name = name "vm-test";
|
||||
tag = "latest";
|
||||
contents = [
|
||||
bash
|
||||
@@ -49,4 +53,4 @@ dockerTools.buildLayeredImage {
|
||||
config.Env = [
|
||||
"CURL_CA_BUNDLE=${cacert}/etc/ssl/certs/ca-bundle.crt"
|
||||
];
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user