nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix

mbedtls: 3.6.3 -> 3.6.4

Changes: https://github.com/Mbed-TLS/mbedtls/releases/tag/mbedtls-3.6.4

+2 -13
+2 -13
pkgs/development/libraries/mbedtls/3.nix
··· 1 1 { callPackage, fetchurl }: 2 2 3 3 callPackage ./generic.nix { 4 - version = "3.6.3"; 5 - hash = "sha256-FJuezgVTxzLRz0Jzk2XnSnpO5sTc8q6QgzkCwlqQ+EU="; 6 - patches = [ 7 - # Fixes the build with GCC 14. 8 - # 9 - # See: 10 - # * <https://github.com/openwrt/openwrt/pull/15479> 11 - # * <https://github.com/Mbed-TLS/mbedtls/issues/9003> 12 - (fetchurl { 13 - url = "https://raw.githubusercontent.com/openwrt/openwrt/52b6c9247997e51a97f13bb9e94749bc34e2d52e/package/libs/mbedtls/patches/100-fix-gcc14-build.patch"; 14 - hash = "sha256-20bxGoUHkrOEungN3SamYKNgj95pM8IjbisNRh68Wlw="; 15 - }) 16 - ]; 4 + version = "3.6.4"; 5 + hash = "sha256-y5YqKtjW4IXyIZkoJvwCGC4scx0qdeV40rynHza4NUE="; 17 6 }