Skip to content

Commit cf6816c

Browse files
committed
Fix building Mbed-TLS version 2.25.0
1 parent 3fa7861 commit cf6816c

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

Diff for: flake.nix

+3-2
Original file line numberDiff line numberDiff line change
@@ -173,8 +173,9 @@
173173
# mbedtls >= 3.6.0 uses git submodules
174174
fetchSubmodules = true;
175175
};
176-
patches = {"v2.25.0" = ./nix/mbedtls-printf.patch; }."${version}" or (prev.patches or [ ]);
177-
checkFlags = (prev.checkFlags or [ ]) ++ [ "SKIP_TEST_SUITES=ssl" ];
176+
patches = { "v2.25.0" = ./nix/mbedtls-printf.patch; }."${version}" or (prev.patches or [ ]);
177+
# NOTE using previous cmakeFlags might not be desirec..
178+
cmakeFlags = (prev.cmakeFlags or [ ]) ++ [ "-DSKIP_TEST_SUITES=ssl,x509parse" ];
178179
}
179180
);
180181

0 commit comments

Comments
 (0)