Skip to content

Commit af3c2c5

Browse files
committed
fix: spelling error
I spelled container wrong 🤷 Signed-off-by: Daniel Noland <[email protected]>
1 parent 88e4674 commit af3c2c5

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

default.nix

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
build-flags ? import ./nix/flags.nix,
44
versions ? import ./nix/versions.nix,
55
image-tag ? "latest",
6-
contianer-repo ? "ghcr.io/githedgehog/dpdk-sys",
6+
container-repo ? "ghcr.io/githedgehog/dpdk-sys",
77
}:
88
rec {
99
rust-version = versions.rust.${rust-channel};
@@ -658,7 +658,7 @@ rec {
658658

659659
container-profile = profile: {
660660
frr = toolchainPkgs.dockerTools.buildLayeredImage {
661-
name = "${contianer-repo}/frr";
661+
name = "${container-repo}/frr";
662662
tag = "${image-tag}";
663663
contents = toolchainPkgs.buildEnv {
664664
name = "frr-env-${profile}";
@@ -682,7 +682,7 @@ rec {
682682
};
683683
};
684684
debug-env = toolchainPkgs.dockerTools.buildLayeredImage {
685-
name = "${contianer-repo}/debug-env";
685+
name = "${container-repo}/debug-env";
686686
tag = "${image-tag}";
687687
contents =
688688
(with toolchainPkgs; [
@@ -715,7 +715,7 @@ rec {
715715
inherit maxLayers;
716716
};
717717
libc-env = toolchainPkgs.dockerTools.buildLayeredImage {
718-
name = "${contianer-repo}/libc-env";
718+
name = "${container-repo}/libc-env";
719719
tag = "${image-tag}";
720720
contents = with pkgs.${profile}.gnu64; [
721721
glibc.out
@@ -725,7 +725,7 @@ rec {
725725
};
726726

727727
mstflint = toolchainPkgs.dockerTools.buildLayeredImage {
728-
name = "${contianer-repo}/mstflint";
728+
name = "${container-repo}/mstflint";
729729
tag = "${image-tag}";
730730
contents = with pkgs.${profile}.gnu64; [
731731
pciutils
@@ -757,7 +757,7 @@ rec {
757757
debug-env = release.debug-env;
758758
libc-env = release.libc-env;
759759
compile-env = toolchainPkgs.dockerTools.buildLayeredImage {
760-
name = "${contianer-repo}/compile-env";
760+
name = "${container-repo}/compile-env";
761761
tag = "${image-tag}";
762762
contents = compile-env;
763763
inherit maxLayers;

0 commit comments

Comments
 (0)