Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ callPackage, fetchurl }:
2
3callPackage ./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 ];
17}